mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-01 11:19:34 +00:00
Added Very Basic Liveblocks Implimentation and README Updates
This commit is contained in:
parent
5a76ac0611
commit
0190fad583
12 changed files with 336 additions and 15 deletions
|
@ -3,6 +3,7 @@ import { redirect } from 'next/navigation';
|
|||
|
||||
import { db } from '@/lib/db';
|
||||
import { ListContainer } from './_components/list-container';
|
||||
import { BoardRoomWrapper } from './_components/board-room-wrapper';
|
||||
|
||||
interface BoardIdPageProps {
|
||||
params: Promise<{
|
||||
|
@ -38,9 +39,11 @@ const BoardIdPage = async (props: BoardIdPageProps) => {
|
|||
});
|
||||
|
||||
return (
|
||||
<div className='h-full overflow-x-auto p-4'>
|
||||
<ListContainer boardId={params.boardId} data={lists} />
|
||||
</div>
|
||||
<BoardRoomWrapper>
|
||||
<div className='h-full overflow-x-auto p-4'>
|
||||
<ListContainer boardId={params.boardId} data={lists} />
|
||||
</div>
|
||||
</BoardRoomWrapper>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue