Merge branch 'master' into issue-321

This commit is contained in:
Tom Moor
2017-10-21 18:28:22 -07:00
committed by GitHub
6 changed files with 68 additions and 27 deletions

View File

@@ -0,0 +1,21 @@
// @flow
import React from 'react';
import styled from 'styled-components';
import { color } from 'styles/constants';
type Props = {
children: string,
};
const Empty = (props: Props) => {
const { children, ...rest } = props;
return <Container {...rest}>{children}</Container>;
};
const Container = styled.div`
display: flex;
color: ${color.slate};
text-align: center;
`;
export default Empty;

View File

@@ -0,0 +1,3 @@
// @flow
import Empty from './Empty';
export default Empty;