var PostsConteiner = React.createClass({
mixins: [ Reflux.connect(PostStorage, "postList") ],
render: function() {
export default class PostsConteiner extends React.Component {
No Mixins
Unfortunately ES6 launched without any mixin support. Therefore, there is no support for mixins when you use React with ES6 classes. Instead, we're working on making it easier to support such use cases without resorting to mixins.