mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { createRoute, dynamic } from 'tuono'
|
|
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'))
|
|
const PokemonspokemonImport = dynamic(
|
|
() => import('./../src/routes/pokemons/[pokemon]'),
|
|
)
|