React
[React] styled-reset _1 (npm i styled-reset)
ahleum
2022. 6. 7. 16:42
https://www.npmjs.com/package/styled-reset
styled-reset
Eric Meyer's Reset CSS for styled-components. Latest version: 4.4.1, last published: 18 days ago. Start using styled-reset in your project by running `npm i styled-reset`. There are 127 other projects in the npm registry using styled-reset.
www.npmjs.com
기본 styled를 reset 하는 걸 import 하는 방법이 있었다
npm i styled-reset
npm으로 install해주고
컴포넌트 <Reset /> 를 넣어주면 된다
import { Reset } from 'styled-reset'
const App = () => (
<React.Fragment>
<Reset />
<div>Hi, I'm an app!</div>
</React.Fragment>
)