bootstrap
// index.ts
import Dahlia from 'dahlia'
import { routes } from './routes'
Dahlia.bootstrap({
routes,
selector: '#root',
})// routes.ts
import { Routes } from 'Dahlia'
import { Home } from './pages/Home'
export const routes: Routes = [
{
path: '/',
component: Home,
},
]Last updated
Was this helpful?