10 lines
379 B
TypeScript
10 lines
379 B
TypeScript
export function Page() {
|
|
return (
|
|
<div className="relative h-full w-full rounded-lg border border-zinc-800 bg-zinc-900 shadow-input shadow-black/20">
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<p className="text-sm text-zinc-400">Sorry, this feature under development, it will come in the next version</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|