diff --git a/app/theme.js b/app/theme.js index 2fa6394..f3a575e 100644 --- a/app/theme.js +++ b/app/theme.js @@ -1,5 +1,5 @@ // @flow -import React from 'react'; +import React, { Fragment } from 'react'; import theme from 'styled-theming'; import { ThemeProvider, createGlobalStyle } from 'styled-components'; // $FlowFixMe @@ -40,10 +40,17 @@ const appTheme = { }, }; -/* eslint-disable react/prop-types */ -// $FlowFixMe -export const DoczWrapper = ({ children }) => {children()}; - export const GlobalStyle = createGlobalStyle`${[normalize()]}`; +/* eslint-disable react/prop-types */ +// $FlowFixMe +export const DoczWrapper = ({ children }) => ( + + + + {children()} + + +); + export default appTheme;