UNPKG

presale-demo-pe

Version:

This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).

17 lines (13 loc) 275 B
import React, {PropTypes} from 'react'; import './Wrapper.css'; const Wrapper = ({ children }) => { return ( <div className="wrapper"> {children} </div> ) }; Wrapper.propTypes = { children: PropTypes.node }; export default Wrapper;