mirror of
https://github.com/outline/outline.git
synced 2026-06-27 02:04:23 +03:00
10 lines
204 B
JavaScript
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}
|
|
`;
|