import { createGlobalStyle } from 'styled-components'; const GlobalStyle = createGlobalStyle` body { background: ${({ theme }) => theme.colors.neutral100}; } `; export default GlobalStyle;