diff --git a/components/BoardsList.tsx b/components/BoardsList.tsx index 91f1a89..ebb7f2b 100644 --- a/components/BoardsList.tsx +++ b/components/BoardsList.tsx @@ -1,29 +1,37 @@ import React from "react"; import BoardIcon from "@/icons/icon-board.svg"; -const BoardsList = () => { +import BoardListProps from "@/model/BoardListProps"; +const BoardsList: React.FC = ({ + boards, + activeBoard = 0, + onChangedaActiveBoard, + onAddNewBoard, +}) => { return (
-

all boards (3)

+

+ all boards ({boards.length}) +