import React from "react" import { Helmet } from "react-helmet" import { Global, css } from "@emotion/core" import styled from "@emotion/styled" import { withTheme } from "emotion-theming" const Layout = ({ children, theme }) => ( <> {/* some styles should applied globally via the layout */} {children} ) export default withTheme(Layout)