Files
lume/src/app/newsfeed/pages/circle/index.page.tsx
2023-04-27 18:43:13 +07:00

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