Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/radzionc/increaser-timeline
Timeline with React
https://github.com/radzionc/increaser-timeline
data-visualization react styled-components
Last synced: about 19 hours 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T01:42:11.000Z (7 months ago)
- Last Synced: 2024-10-31T18:56:04.397Z (6 days ago)
- Topics: data-visualization, react, styled-components
- Language: JavaScript
- Homepage: https://radzionc.github.io/increaser-timeline/
- Size: 1.13 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# increaser-timeline
>
[![NPM](https://img.shields.io/npm/v/increaser-timeline.svg)](https://www.npmjs.com/package/increaser-timeline)
![alt text](https://cdn-images-1.medium.com/max/2000/1*x82VVUaS-xuLv-BzjTn_wQ.gif)
## [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)