Right now, I figure out that I have two way to do this: One , I am putting global style such as in the App.css and then import them in the App.js
:root {
box-sizing: border-box;
font-size: 62.5%;
}
*,
::before,
::after {
box-sizing: inherit;
margin: 0;
padding: 0;
}
Another way is to use GlobalStyles that provide by styled Component. Which way should I do ?
Thanks for the help!