Files
formbricks/apps/web/components/MessagePage.tsx
T
Matti Nannt 5c378bc8ce Feature/monorepo #95 (#105)
Move repository into a monorepo with turborepo and pnpm.
This is a big change in the way the code is organized, used and deployed.
2022-10-13 09:46:43 +02:00

12 lines
359 B
TypeScript

export default function MessagePage({ text }) {
return (
<div className="min-h-screen bg-white px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
<div className="mx-auto max-w-max">
<main>
<div className="text-ui-gray-dark flex justify-center text-sm">{text}</div>
</main>
</div>
</div>
);
}