1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-11 13:45:52 +03:00
x0/docs
2018-06-19 13:14:54 -04:00
..
examples Support for nested routing 2018-06-19 12:17:49 -04:00
__app.js Move docs around for development 2018-06-19 10:54:44 -04:00
_app.js Adjust scope and fix deps 2018-06-19 13:14:54 -04:00
beep.jsx Move docs around for development 2018-06-19 10:54:44 -04:00
components.md Support for nested routing 2018-06-19 12:17:49 -04:00
dynamic.js Support for nested routing 2018-06-19 12:17:49 -04:00
hello-x0.gif Add new demo movie 2018-05-26 10:18:49 -04:00
hello-x0.mp4 Add new demo movie 2018-05-26 10:18:49 -04:00
home.js Move docs around for development 2018-06-19 10:54:44 -04:00
readme.js Support for nested routing 2018-06-19 12:17:49 -04:00
theme.js Edit docs site 2018-05-25 21:48:21 -04:00

import React from 'react'
import {
  Container
} from 'rebass'
import styled from 'styled-components'
import Readme from '../README.md'

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 />
    </Prose>
  </Container>