Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.07 KB

README.md

File metadata and controls

38 lines (28 loc) · 1.07 KB

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