Added Very Basic Liveblocks Implimentation and README Updates

This commit is contained in:
Ahmad 2025-01-11 01:04:43 -05:00
parent 5a76ac0611
commit 0190fad583
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
12 changed files with 336 additions and 15 deletions

View file

@ -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>
);
};