Skip to content

swiftcarrot/react-normalize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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