Yet another library of reusable React components/hooks.
yarn add react-atomicus
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.
MIT