mirror of
https://github.com/AndersPier/v0-v0app.git
synced 2025-10-27 10:06:52 +00:00
Replace incorrect React component with valid one. #VERCEL_SKIP Co-authored-by: Anders Lehmann Pier <3219386+AndersPier@users.noreply.github.com>
10 lines
326 B
TypeScript
10 lines
326 B
TypeScript
// app/page.tsx
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-center gap-4">
|
|
<h1 className="text-3xl font-bold">Markdown Editor</h1>
|
|
<p className="text-muted-foreground">Your application is up and running. Start editing!</p>
|
|
</main>
|
|
)
|
|
}
|