To use CSS normalize in a React application, all you have to do is to install the library from NPM and include it in your _app.js
component (or any component that is always loaded with your application.)
Install
npm i normalize.css
Create a custom app component, and then simply import your normalize file there:
// pages/_app.js
import 'normalize.css/normalize.css';