rsnext/examples/with-mobx-state-tree/pages/other.js
Dan Argue a8c344fa19 Add with-mobx-state-tree example (#3179)
* Adapt with-mobx example for with-mobx-state-tree

* Remove unnecessary lastUpdate parameter to show off snapshot

* update readme

* make other.js more closely mimic index.js
2017-11-23 13:41:59 +01:00

26 lines
652 B
JavaScript

import React from 'react'
import { Provider } from 'mobx-react'
import { getSnapshot } from 'mobx-state-tree'
import { initStore } from '../store'
import Page from '../components/Page'
export default class Counter extends React.Component {
static getInitialProps({ req }) {
const isServer = !!req
const store = initStore(isServer)
return { initialState: getSnapshot(store), isServer }
}
constructor(props) {
super(props)
this.store = initStore(props.isServer, props.initialState)
}
render() {
return (
<Provider store={this.store}>
<Page title='Other Page' linkTo='/' />
</Provider>
)
}
}