This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/shared/styles/globals.js

10 lines
204 B
JavaScript

// @flow
import styledNormalize from 'styled-normalize';
import { injectGlobal } from 'styled-components';
import base from './base';
export default () => injectGlobal`
${styledNormalize}
${base}
`;