import * as React from 'react';
import { Store } from '../Store';
import { observer } from 'mobx-react';
function MyComponent({ store }: { store: Store }) {
const clickButton = store.clickButton.bind(store);
return (
You've clicked the button {store.numClicks} times.
You've clicked button an {store.oddOrEven} number of times.