Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)