deck headers and saving (closing is broken though)
This commit is contained in:
parent
54fe9f17bf
commit
7b1da05aa3
5 changed files with 82 additions and 16 deletions
|
@ -6,6 +6,6 @@ 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} />)}
|
||||
{deck?.columns.map((column, i) => <DeckColumn key={column.channelId} deck={deck} index={i} column={column} />)}
|
||||
</div>;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue