Skip to content

Yet another library of reusable React components/hooks.

License

Notifications You must be signed in to change notification settings

w0wka91/react-atomicus

Repository files navigation

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