Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.17 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.17 KB

Zeus

Greenkeeper badge

Getting Started

A Simple and elegant component-based UI library

Installation

npm i zeus-ui

Usage

import React from 'react'
import ReactDOM from 'react-dom'
import { Provider, Button } from 'zeus-ui'

const App = () => (
  <Provider>
    <div>
      <h1>Hello Zeus-ui</h1>
      <Button>Click me</Button>
    </div>
  </Provider>
)

ReactDOM.render(<App />, document.getElementById('root'))

👉 Click here 👈 for more information.

Feedback

Issues or feature requests can be created on our GitHub page

Browser Support

All browsers that React supports are supported.

Contributing

Before opening an issue or pull request, please read the Contributing guide.