ChannelDeck working prototype
This commit is contained in:
commit
54fe9f17bf
13 changed files with 241 additions and 0 deletions
11
components/DeckContent.tsx
Normal file
11
components/DeckContent.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
import "./DeckContent.css";
|
||||
|
||||
import { cl, useDeck } from "./util";
|
||||
import DeckColumn from "./DeckColumn";
|
||||
|
||||
export default function DeckContent() {
|
||||
const deck = useDeck();
|
||||
return <div className={cl("content")}>
|
||||
{deck?.columns.map(column => <DeckColumn key={column.channelId} column={column} />)}
|
||||
</div>;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue