mirror of
https://github.com/vercel/commerce.git
synced 2025-05-16 06:26:58 +00:00
11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
export const runtime = 'edge';
|
|
|
|
export default async function Page() {
|
|
return (
|
|
<>
|
|
<h1 className="mb-8 text-5xl font-bold">My Page</h1>
|
|
<p>Content</p>
|
|
</>
|
|
);
|
|
}
|