Normalize

Smooth UI includes a Normalize component, it is strongly recommended to use it. Several global CSS codes are injected:

Usage

Import Normalize from @smooth-ui/core-sc or @smooth-ui/core-em, then add it to the root of your application.

import React from 'react'
import { Normalize } from '@smooth-ui/core-sc'
function App() {
return (
<>
<Normalize />
{/* Your code ... */}
</>
)
}