mirror of
https://github.com/vercel/next-learn.git
synced 2026-07-07 14:09:06 +00:00
10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
import Hero from '@/app/ui/hero';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main>
|
|
<Hero />
|
|
</main>
|
|
);
|
|
}
|