UNPKG

reactors

Version:

View components and APIs that work web, mobile and desktop!

19 lines (14 loc) 258 B
/** * @module reactors * @flow **/ import React, {Component} from 'react'; export default class ReactorsViewDOM extends Component { render() { return ( <section {...this.props}> {this.props.children} </section> ); } }