import { createGlobalStyle } from 'styled-components'; const GlobalStyle = createGlobalStyle` html { margin: 0; } body { margin: 0; min-width: 320px; min-height: 100vh; } `; export default GlobalStyle;