hyper/app/plugins.js

19 lines
280 B
JavaScript
Raw Normal View History

2016-07-07 16:16:44 -08:00
import React from 'react';
export default class Plugins extends React.Component {
componentDidMount () {
}
render () {
const child = React.Children.only(this.props.children);
return React.cloneElement(child, this.props);
}
componentWillUnmount () {
}
}