Board setup.

This commit is contained in:
Mike Cao 2026-01-16 19:52:16 -08:00
parent f97c840825
commit e08907d998
9 changed files with 141 additions and 23 deletions

View file

@ -13,9 +13,5 @@ export function BoardProvider({ boardId, children }: { boardId: string; children
return <Loading placement="absolute" />;
}
if (!board) {
return null;
}
return <BoardContext.Provider value={board}>{children}</BoardContext.Provider>;
}