posterstrudel/src/routes.tsx
2024-09-17 18:11:08 -06:00

9 lines
181 B
TypeScript

import { RouteObject } from "react-router-dom";
import ThreadView from "./views/thread";
export const threadRoute: RouteObject = {
path: "/n/:id",
element: <ThreadView />,
};