We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03400cb commit 27958a3Copy full SHA for 27958a3
tesfa/src/app/kanban/page.tsx
@@ -1,10 +1,13 @@
1
import Layout from '../sharedComponents/Layout';
2
import KanbanBoard from './components/Board';
3
+import { Suspense } from 'react';
4
5
export default function KanbanPage() {
6
return (
7
<Layout>
- <KanbanBoard />
8
+ <Suspense fallback={<div>Loading...</div>}>
9
+ <KanbanBoard />
10
+ </Suspense>
11
</Layout>
12
);
13
}
0 commit comments