standalone is not ready yet
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2022-11-06 23:17:51 +01:00
parent 3ac968a63c
commit 12f829c3d3
8 changed files with 53 additions and 14 deletions

12
app/blog/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { Suspense } from 'react';
import Posts from './posts';
export default function Page() {
return (
<div className="space-y-6 pt-6">
<Suspense fallback={<div>Loading...</div>}>
<Posts />
</Suspense>
</div>
);
}