UNPKG

@thisismanta/react-playbook

Version:

**Playbook** is a UI library made for listing React components.

13 lines (12 loc) 367 B
import React from 'react'; export default class ErrorBoundary extends React.PureComponent<{ children: React.ReactNode; }, { error?: any; }> { constructor(props: any); static getDerivedStateFromError(error: any): { error: any; }; render(): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined; }