13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
requirejs(["https://cdnjs.cloudflare.com/ajax/libs/mithril/1.1.6/mithril.min.js", './barbells'], function(_, barbells) {
|
|
m.route(document.body, '/', {
|
|
'/': {
|
|
view: function() {
|
|
return m("nav.items", [
|
|
m("a[href='/barbells']", {oncreate: m.route.link}, "Barbells")
|
|
])
|
|
}
|
|
},
|
|
'/barbells': barbells
|
|
});
|
|
});
|