https://github.com/radzionc/increaser-timeline
Timeline with React
https://github.com/radzionc/increaser-timeline
data-visualization react styled-components
Last synced: 3 days ago
JSON representation
Timeline with React
- Host: GitHub
- URL: https://github.com/radzionc/increaser-timeline
- Owner: radzionc
- License: mit
- Created: 2018-12-03T17:12:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T01:42:11.000Z (almost 2 years ago)
- Last Synced: 2025-10-24T19:57:57.926Z (4 months ago)
- Topics: data-visualization, react, styled-components
- Language: JavaScript
- Homepage: https://radzionc.github.io/increaser-timeline/
- Size: 1.13 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# increaser-timeline
>
[](https://www.npmjs.com/package/increaser-timeline)

## [Demo](https://radzionc.github.io/increaser-timeline/)
## Install
```bash
npm install --save increaser-timeline
```
## Usage
```jsx
import React from 'react'
import Timeline from 'increaser-timeline'
const Container = ({ children }) => (
{children}
)
// optional
const theme = {
textColor: 'white',
backgroundColor: 'rgba(255, 255, 255, 0.14)'
}
class Example extends React.Component {
constructor(props) {
super(props)
this.state = { sets: [] }
}
render() {
const { sets } = this.state
return (
)
}
}
```
## [Blog Post](https://geekrodion.com/blog/timeline-react)
## License
MIT © [RodionChachura](https://geekrodion.com)