public render()

in client/components/shared/ErrorBoundary.tsx [27:37]


	public render() {
		if (this.state.hasError) {
			const fallback = this.props.fallback;
			if (typeof fallback === 'function') {
				return fallback(this.state.error);
			}
			return fallback;
		}

		return this.props.children;
	}