-
- Notifications
You must be signed in to change notification settings - Fork 312
Open
Description
If a component directly returns null like this:
export const DataTableColumnDocs: FunctionComponent< IDataTableColumn<object> > = () => { return null; };
Then it won't find any interface to parse. The same behavior can be seen when a component directly returns a prop like so:
export const AuthenticatedBoundary = ({ children, fallback, }: AuthenticatedBoundaryProps) => { const { isLoggedIn } = useAuthentication(); if (!isLoggedIn) { return fallback; } return children; };
Metadata
Metadata
Assignees
Labels
No labels