UNPKG

react-mappy-monster

Version:

``` yarn add react-mappy-monster or npm i react-mappy-monster ```

22 lines (16 loc) 409 B
import React, { Component } from 'react'; export class Content extends Component { constructor(props) { super(props); } render() { return ( <div className="content"> <div className="content-wrapper"> {this.props.children} </div> </div> ); } } export default Content;