1
1
mirror of https://github.com/c8r/x0.git synced 2024-10-26 15:15:04 +03:00
x0/docs/docs.js
2018-05-26 09:56:45 -04:00

28 lines
480 B
JavaScript

import React from 'react'
import {
Container
} from 'rebass'
import styled from 'styled-components'
import Readme from '../README.md'
import scope from './_scope'
const Prose = styled.div([], {
'& img': {
display: 'block',
maxWidth: '100%',
height: 'auto',
},
'& .demo-image, & a[href="LICENSE/"]': {
display: 'none'
}
})
export default props =>
<Container py={5}>
<Prose>
<Readme
scope={scope}
/>
</Prose>
</Container>