import * as React from 'react'; import { observer } from 'mobx-react'; import { Store } from '../Store'; import MyComponent from './MyComponent'; interface Props { store: Store } @observer class App extends React.Component { store = this.props.store; render() { return (

Welcome to the {this.store.name} project.

This project is {this.store.description}.

); } } export default App;