@smashing/css
v1.0.1
Published
CSS utils: reset, normalize.
Downloads
9
Readme
yarn add @smashing/css
CSS utils: reset to sane defaults, normalize across browsers.
import {Reset, Normalize} from "@smashing/css"
import {createGlobalStyle} from "styled-components"
const App = () => (
<div>
<GlobalStyle />
<Reset />
<Normalize />
</div>
)