mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 22:02:46 -07:00
5 lines
236 B
TypeScript
5 lines
236 B
TypeScript
import { createRoute } from 'tuono';
|
|
import { dynamic } from 'external-lib';
|
|
const IndexImport = dynamic(() => import('./../src/routes/index'));
|
|
const PokemonspokemonImport = dynamic(() => import('./../src/routes/pokemons/[pokemon]'));
|