TableNativePlugin

Reviewed By: passy

Differential Revision: D17258701

fbshipit-source-id: 0d622e63cc028969c9c6d51c5aa2cc8977aac151
This commit is contained in:
John Knox
2019-09-09 06:49:30 -07:00
committed by Facebook Github Bot
parent c8c027150a
commit b71ae59545
2 changed files with 28 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ export const ErrorBlockContainer = styled(CodeBlock)({
*/
export default class ErrorBlock extends React.Component<{
/** Error message to display. Error object's `stack` or `message` property is used. */
error: Error | string | void;
error: Error | string | null;
/** Additional className added to the container. */
className?: string;
}> {