Eric Meyer's reset for Emotion CSS-in-JS library.
npm install --save emotion-meyer-reset
import {Global,css} from "@emotion/core";
import reset from "emotion-meyer-reset";
// …
<Global
styles={css`
${reset}
html,
body {
background: white;
min-height: 100%;
font-family: Helvetica, Arial, sans-serif;
// …
}
`}
/>