skalara/app/page.tsx
Christopher Arraya f98072c7cf initial commit
2023-09-16 23:15:44 -04:00

10 lines
195 B
TypeScript

export const dynamic = "force-dynamic";
export default async function Index() {
return (
<div className="w-full flex flex-col items-center">
<h1>Hello, World!</h1>
</div>
);
}