1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 13:53:51 +03:00
copilot/spikes/compose-demo/components/article.js
Sérgio Ramos fd19fff435 compose demo
2017-05-11 16:42:55 +01:00

14 lines
216 B
JavaScript

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