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