UNPKG

phenomic

Version:

Modern website generator based on the React and Webpack ecosystem.

16 lines (11 loc) 253 B
import React, { PropTypes } from "react" import styles from "./index.css" const Content = (props) => ( <div className={ styles.content }> { props.children } </div> ) Content.propTypes = { children: PropTypes.node, } export default Content