mirror of https://github.com/alibaba/ice.git
13 lines
188 B
TypeScript
13 lines
188 B
TypeScript
|
|
||
|
import {
|
||
|
index,
|
||
|
layout,
|
||
|
physical,
|
||
|
rootRoute,
|
||
|
route,
|
||
|
} from '@tanstack/virtual-file-routes';
|
||
|
|
||
|
export default rootRoute('', [
|
||
|
index('index.tsx'), route('home', 'home.tsx'),
|
||
|
]);
|