Getting Started

How to install

For npm users

$ npm install react-neon-ui styled-components

For yarn users

$ yarn add react-neon-ui styled-components

Example


  import React from 'react'
  import { Button } from 'react-neon-ui'

  const App = () => (
    <div>
      <Button>Click Here</Button>
    </div>
  )

  export default App