joyent-portal/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>
);