use preact

This commit is contained in:
Shin'ya Ueoka 2017-11-18 22:02:44 +09:00
parent 89c52173ce
commit 44459e39c3
5 changed files with 12 additions and 19 deletions

View file

@ -1,18 +1,15 @@
import React from 'react';
import PropTypes from 'prop-types';
import { h, Component } from 'preact';
class Provider extends React.PureComponent {
class Provider extends Component {
getChildContext() {
return { store: this.props.store };
}
render() {
return React.Children.only(this.props.children);
return <div>
{ this.props.children }
</div>;
}
}
Provider.childContextTypes = {
store: PropTypes.any,
};
export default Provider;