Files
PolyMPR/routes/(apps)/mobility/partials/index.tsx
T
2025-01-15 23:51:54 +01:00

15 lines
363 B
TypeScript

import {
getPartialsConfig,
makePartials,
} from "$root/defaults/makePartials.tsx";
import { EmptyObject } from "$root/defaults/interfaces.ts";
type MobilityIndexProps = EmptyObject;
export function Index(_props: MobilityIndexProps) {
return <p>Nothing to see here...</p>;
}
export const config = getPartialsConfig();
export default makePartials(Index);