Likely related to https://github.com/reactjs/react-docgen/issues/215. Recursive type structs cause a maximum call-stack exceeded error when parsing with Flow. ```jsx import * as React from "react"; type Identity<T> = T; type Props<T> = { prop: Identity<T> }; export default function MyComponent<T>(props: Props<T>) { return <div/> } ```