repente

Untitled

May 18th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. "use strict";
  2. import m from 'mithril';
  3.  
  4. var Menu = {
  5. view: function () {
  6. return m("div", {class: "navigation-menu"},
  7. [
  8. m("a", {href:"#!/"} , "Home"),
  9. m("a", {href:"#!/inleverans"} , "Inleveranser"),
  10. ]
  11. );
  12. }
  13. }
  14.  
  15. export { Menu }
Add Comment
Please, Sign In to add comment