An extensible, Gantt-style “parallel processes” timeline component for React.
npm install @neuralsea/react-parallel-timelineAn extensible, Gantt-style “parallel processes” timeline component for React.
``bash`
npm i @neuralsea/react-parallel-timeline
Peer deps: react, react-dom (React 19).
`tsx
import { Timeline } from "@neuralsea/react-parallel-timeline";
import "@neuralsea/react-parallel-timeline/styles.css";
export function Example() {
return (
items={[
{ id: "a", laneId: "ui", start: 0, end: 10_000, label: "draft", status: "responding" },
]}
defaultView={{ start: 0, end: 60_000 }}
now={12_345}
grid={{ show: true }}
axes={{ showLaneAxis: true, showTimeAxis: true, timeOrigin: 0 }}
motion={{ mode: "auto" }}
/>
);
}
``
- Repo: https://github.com/emmett08/react-parallel-timeline-starter