Files
cunkebao_v3/nkebao/src/router/module/other.tsx
2025-07-28 16:53:18 +08:00

12 lines
198 B
TypeScript

import SelectionTest from "@/components/SelectionTest";
const otherRoutes = [
{
path: "/selection-test",
element: <SelectionTest />,
auth: false,
},
];
export default otherRoutes;