init
This commit is contained in:
15
src/features/kanban/components/kanban-view-page.tsx
Normal file
15
src/features/kanban/components/kanban-view-page.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import PageContainer from '@/components/layout/page-container';
|
||||
import { KanbanBoard } from './kanban-board';
|
||||
import NewTaskDialog from './new-task-dialog';
|
||||
|
||||
export default function KanbanViewPage() {
|
||||
return (
|
||||
<PageContainer
|
||||
pageTitle='Kanban'
|
||||
pageDescription='Manage tasks with drag and drop'
|
||||
pageHeaderAction={<NewTaskDialog />}
|
||||
>
|
||||
<KanbanBoard />
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user