p5.js-web-editor/client/modules/App/App.jsx

18 lines
310 B
React
Raw Normal View History

2016-05-18 19:37:59 +02:00
import React from 'react';
import { connect } from 'react-redux';
class App extends React.Component {
constructor(props, context) {
super(props, context);
}
render() {
return (
<div className="app">
{ this.props.children }
</div>
);
}
}
export default connect()(App);