import React from 'react'; import { ThemeProvider } from 'styled-components'; import theme from '../theme'; import Base from '../base'; import { RootContainer } from '../layout'; import 'codemirror/mode/jsx/jsx'; const StyledBase = Base.extend` /* trick prettier */ background-color: transparent; `; export default ({ children }) => ( {children} );