A modern and responsive React timeline component using basic CSS. Checkout the examples here!
# via yarn
yarn add @salmanul/react-simple-timeline
# via npm
npm install --save @salmanul/react-simple-timeline
At the very minimum:
import Timeline from '@salmanul/react-simple-timeline'
const data: [
{
title: "Initialized",
checked: true
},
{
title: "Acknowledged",
checked: false
},
{
title: "Processed",
checked: false
}
];
ReactDOM.render(
<div>
<Timeline
data={data}
/>
</div>,
document.getElementById('root')
)