fixed remain errors

This commit is contained in:
Ren Amamiya
2023-04-23 10:13:38 +07:00
parent 2d9689967d
commit ac6fb3cb55
4 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
import NewsfeedLayout from '@components/layouts/newsfeed';
export function Page() {
return (
<NewsfeedLayout>
<h1>TODO</h1>
</NewsfeedLayout>
);
}

View File

@@ -1,3 +1,11 @@
import NewsfeedLayout from '@components/layouts/newsfeed';
export function Page() {
return <></>;
return (
<NewsfeedLayout>
<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>
</NewsfeedLayout>
);
}