Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.51 KB

README.md

File metadata and controls

43 lines (32 loc) · 1.51 KB

Yet another library of reusable React components/hooks.

Build Status codecov Netlify Status License: MIT

Installing

yarn add react-atomicus

Basic usage

After installing the library, include the Normalize component in your application and you're ready to go:

import React from 'react'
import ReactDOM from 'react-dom'
import { Normalize, Button } from 'react-atomicus'

ReactDOM.render(
  <>
    <Normalize />
    <Button>Test</Button>
  </>,
  document.getElementById('root')
)

Have a look at the documentation at react-atomicus for more information about using react-atomicus.

License

MIT