mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 18:33:01 +00:00
Add 'packages/frontend/' from commit 'ecaa662131160697866f77488d13159c986d5e8e'
git-subtree-dir: packages/frontend git-subtree-mainline:d7bdd20dc4git-subtree-split:ecaa662131
This commit is contained in:
16
packages/frontend/src/Test.tsx
Normal file
16
packages/frontend/src/Test.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Button } from "@/components/ui/button";
|
||||
|
||||
function Test() {
|
||||
return (
|
||||
<main className="w-full h-[100vh] flex flex-col items-center justify-center gap-4 p-4">
|
||||
<h1 className="text-3xl font-bold">Test</h1>
|
||||
|
||||
<p className="text-muted-foreground">Simple test page for demo</p>
|
||||
<div className="flex gap-4">
|
||||
<Button linkTo="/">go back to "/"</Button>
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
export default Test;
|
||||
Reference in New Issue
Block a user