1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 13:53:51 +03:00
copilot/legacy/spikes/compose-demo/components/article.js

14 lines
216 B
JavaScript
Raw Normal View History

2017-05-11 18:30:03 +03:00
import styled from 'styled-components';
const Article = styled.article`
font-family: Helvetica;
padding: 10px;
color: dimgray;
`;
export default ({ children }) => (
<Article>
{children}
</Article>
);