Advertisement
repente

Untitled

May 18th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. "use strict";
  2.  
  3. import m from "mithril";
  4.  
  5. import { list } from "./views/list";
  6. import { form } from "./views/form";
  7. import { Home } from "./views/home";
  8.  
  9. m.route(document.body, "/", {
  10. "/": Home,
  11. "/inleverans": list,
  12. "/new": form,
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement