import React, { FC } from 'react'; import { ThemeProvider } from 'styled-components'; import config from './config'; import { GlobalStyle } from '.'; const TheLandingProvider: FC<{ theme?: any }> = ({ children, theme }) => ( {children} ); export default TheLandingProvider;