BlankLayout.tsx 206 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
import React, { ReactNode, SFC } from 'react';

interface BlankLayoutProps {
  children: ReactNode;
}

const Layout: SFC<BlankLayoutProps> = ({ children }) => <div>{children}</div>;

export default Layout;