flowのDocsのReactのページには今のところ明記されていない。 (<void, Props<...>, State<...>>となっていて最初が不明) TypeScript(DefinitelyTypedにあるd.ts)の場合は<Props, State>になっているので、移行の際は注意が必要。 出典 例 // @flow import React from 'react'; type State = {count: number}; type Props = {count: ?number}; type DefaultProps = Props; class Counter extends React.Component<DefaultProps, Props, State> { state: State; // WTF constructor(props: Props, con