standalone is not ready yet
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
12
app/blog/page.tsx
Normal file
12
app/blog/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user