0.1.1 • Published 7 years ago

offgrid-components v0.1.1

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
7 years ago

OffGrid Components

OffGrid Components for ReactJS

  • Conversational User Interface with Cards
  • Sidebar
  • App Headerbar

Demo

npm install
npm run storybook

Usage

npm install offgrid-components --save
import { OGNAppBar, OGNSideBar, OGNConversationSurface } from 'offgrid-components'

class App extends Component {
  
  render() {
    <Provider store={store}>
        <div className="App">
            <OGNAppBar />
            <OGNSideBar >
            <ul>
                 <li className="ogn-sidebar-item App-sidebar-item"><a href="#">Hello</a></li>
                  <li className="ogn-sidebar-item App-sidebar-item"><a href="#">World</a></li>
             </ul>
            </OGNSideBar>
            <OGNConversationSurface id="chat" />
            </div>
    </Provider>
  }

License

Apache 2.0