This is simple step progress component for react
npm install --save react-step-component
import React, { Component } from 'react'
import { List, Item } from 'react-step-component'
export default class App extends Component {
render() {
return (
<div>
<List>
<Item.Wrapper>
<Item.Left>
Left Component
</Item.Left>
<Item.Center/>
<Item.Right>
Right Component
</Item.Right>
</Item.Wrapper>
</List>
</div>
)
}
}
MIT © ilomon10