React 관련 링크 - JunilHwang/dkusw-log GitHub Wiki
- 공식문서 : https://reacttraining.com/react-router/web/guides/quick-start
- 튜토리얼 : https://velopert.com/3417
- Match type : https://stackoverflow.com/questions/47135217/what-to-declare-react-router-argument-as-in-typescript/47142141
- NavLink : https://stackoverflow.com/questions/41131450/active-link-with-react-router
- Redux vs Mobx : http://woowabros.github.io/experience/2019/01/02/kimcj-react-mobx.html
- mobx functional : https://github.com/mobxjs/mobx/issues/853
import React from 'react'
import { inject, observer } from 'mobx-react'
const Vegetable = ({ FruitStore }) => (
<h1>{FruitStore.favorite}</h1>
)
export default inject('FruitStore')(observer(Vegetable))