Home > @fluentui/react-teams > IBoardProps
The Board component can be used to render kanban and task board experiences in your app. Designs for this component are available in the [Task board page of the Microsoft Teams UI Kit](https://www.figma.com/file/EOsbapNvZgEwcA1mShswfh/Microsoft-Teams-UI-Kit-Community?node-id=3789%3A3840).
Signature:
export interface IBoardProps
Property | Type | Description |
---|---|---|
boardItemCardLayout? | IBoardItemCardLayout | (Optional) If the cards representing the Board’s items should be different from the default, that design can be configured here. |
emptyState? | TCommunicationProps | (Optional) The empty state Communication component to render if this Component has no content. |
items | TBoardItems | The Board’s items. |
lanes | TBoardLanes | The Board’s lanes, or columns. |
onInteraction? | (interaction: TBoardInteraction) => void | (Optional) The Board’s interaction handler, called when the user changes the Board’s items or lanes. |
users | TUsers | The users the Board’s items may associate with. To improve performance, this object should contain only the users associated with any items in the Board. |