Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tverdohleb/react-trivial-timeline

React vertical timeline component
https://github.com/tverdohleb/react-trivial-timeline

react timeline timeline-component vertical vertical-timeline

Last synced: about 2 months ago
JSON representation

React vertical timeline component

Awesome Lists containing this project

README

        

# Trivial but powerful event timeline for react

[![CircleCI](https://circleci.com/gh/tverdohleb/react-trivial-timeline/tree/master.svg?style=svg)](https://circleci.com/gh/tverdohleb/react-trivial-timeline/tree/master)
[![npm version](https://badge.fury.io/js/react-trivial-timeline.svg)](https://badge.fury.io/js/react-trivial-timeline)
[![Maintainability](https://api.codeclimate.com/v1/badges/2e5c8c906d6a547ca10d/maintainability)](https://codeclimate.com/github/tverdohleb/react-trivial-timeline/maintainability)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/tverdohleb/react-trivial-timeline/blob/master/LICENSE.md)

## Demo

Visit [demo page](https://master-react-trivial-timeline.now.sh) to see component in action.

## Getting started

```
# via yarn
yarn add react-trivial-timeline

# via npm
npm install --save react-trivial-timeline
```

`react-trivial-timeline` has `react`, `react-dom`, `prop-types` and `styled-components` as peer dependencies.

## Usage
```
import { Timeline, Event } from 'react-trivial-timeline';

ReactDOM.render(




Content


Some content


,
document.getElementById('root')
);
```