repente

Untitled

May 18th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. "use strict";
  2. import m from 'mithril';
  3.  
  4. import { Menu } from "./menu";
  5.  
  6. var Home = {
  7. view: function() {
  8. return m("main", [
  9. m("h1", {class: "title"}, "Infinity Warehouses"),
  10. m("p", "Welcome to Infinity Warehouses. Where products goes to disappear"),
  11. m(Menu),
  12. ]);
  13. }
  14. }
  15.  
  16.  
  17. export { Home };
Add Comment
Please, Sign In to add comment