import React, { FC } from 'react'; import { Header } from './Header'; export const Layout: FC = ({ children }) => (
{children}
);