[TOC]
# 与 React
我们可以在 `/node_modules/@type/React` 找到有关 `Component` 的定义,我们截取部分
```
interface Component extends ComponentLifecycle { }
```
> [React+TypeScript Cheatsheets](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet/blob/master/README.md)
> [开始使用 TypeScript 和 React](https://www.jianshu.com/p/71bbcdc8c1fc#/)
# 疑问
[Typescript and React: What’s React.Component mean?](https://devblog.xero.com/typescript-and-react-whats-react-component-p-s-mean-cfddc65f81e1)
[What does SS stand for in a React Component declaration?](https://stackoverflow.com/questions/57059348/what-does-ss-stand-for-in-a-react-component-declaration)
# 参考
> [TypeScript + React: Component patterns](https://fettblog.eu/typescript-react-component-patterns/)
> [React JSX | 深入理解TypeScript](https://jkchao.github.io/typescript-book-chinese/jsx/reactJSX.html#react-jsx)
> [TypeScript in React Native](https://monsoir.github.io/Notes/React/react-native/react-native-typescript.html)