Row
A row is a container for items.
The timeline is constructed of many rows, stacked on top of each other, where each row contains all the items related to it.
Row is an extension of dnd-kits's Droppable.
Please make sure you unserstand it's basic concepts before moving on.
dnd-timeline
does not provide you with a <Row />
component, so you will need to build your own.
A basic Row component will look like this:
Row.tsx
dnd-timeline also provides you with a helper type that you can extend.
You can fully customize this component according to your needs.
Usage
Every <Row />
component should be rendered as a child of it's parent row.
Timeline.tsx
Last updated