commerce/app/my-page/page.tsx
2023-06-07 21:09:43 -05:00

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>
</>
);
}