react-normalize

normalize.css as react component

Usage no npm install needed!

<script type="module">
  import reactNormalize from 'https://cdn.skypack.dev/react-normalize';
</script>

README

react-normalize

npm npm Build Status codecov styled with prettier

normalize.css as react component

https://swiftcarrot.dev/react-normalize

Installation

yarn add react-normalize
npm install react-normalize --save

Usage

import React, { Fragment } from 'react';
import Normalize from 'react-normalize';

const App = ({ children }) => {
  return (
    <Fragment>
      <Normalize />
      {children}
    </Fragment>
  );
};

License

MIT