Added a test page

This commit is contained in:
2025-03-16 23:42:30 +01:00
parent 04b2536aac
commit aee597acf2
3 changed files with 32 additions and 2 deletions

5
app/pages/test.tsx Normal file
View File

@@ -0,0 +1,5 @@
import type { Item } from "~/api/client";
export default function Test({ item }: { item: Item }) {
return <div>{item.name}</div>;
}