Fixed card CSS and hint

This commit is contained in:
fedyna-k
2025-01-15 23:51:54 +01:00
parent 8eb8174755
commit ce944c8d92
11 changed files with 82 additions and 25 deletions
+14
View File
@@ -0,0 +1,14 @@
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);