mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-04 11:30:38 -05:00
5c378bc8ce
Move repository into a monorepo with turborepo and pnpm. This is a big change in the way the code is organized, used and deployed.
12 lines
359 B
TypeScript
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>
|
|
);
|
|
}
|