Jean
Results
4
issues of
Jean
```js type Props = { children: React.Element, renderStatus?: () => React.Element }; function Test(props: Props, context) { if (context.show) { return props.renderStatus ? props.renderStatus() : null; } return props.children; }...
improvement
component-detection
### Description I create a test project ```bash mkdir test cd test bit init bit create express-serve api bit install sqlite3 ``` and add sqlite3 test code ``` import express...
type/help wanted