You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
387 B
12 lines
387 B
import m from 'mithril'; |
|
|
|
import Layout from './layout'; |
|
import { RawDataPage } from 'pages/raw-data/raw-data-page'; |
|
import { DashboardPage } from 'pages/dashboard/dashboard-page'; |
|
|
|
require('../node_modules/bulma/css/bulma.css'); |
|
|
|
m.route(document.body, "/raw", { |
|
"/dashboard": { render: () => m(Layout, m(DashboardPage)) }, |
|
"/raw": { render: () => m(Layout, m(RawDataPage)) }, |
|
});
|
|
|