refactoring baseline component

This commit is contained in:
Alex Windett 2017-02-01 15:14:37 +00:00
parent 6bf348659b
commit ee4d78cdce
1 changed files with 5 additions and 8 deletions

View File

@ -33,14 +33,11 @@ const StyledBaselineBackground = styled.div`
const Baseline = ({
children
}) => {
return (
<StyledBaselineBackground>
{children}
</StyledBaselineBackground>
);
};
}) => (
<StyledBaselineBackground>
{children}
</StyledBaselineBackground>
);
Baseline.propTypes = {
children: React.PropTypes.node,