werein/react

View on GitHub
src/containers/layout.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

type Props = {
  children: any
}

const Layout = (props: Props) =>
  <div>{props.children}</div>;

export default Layout;