mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +02:00
14 lines
216 B
JavaScript
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>
|
|
);
|