mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-27 13:26:55 +02:00
6 lines
282 B
TypeScript
6 lines
282 B
TypeScript
|
|
import { Component, PropsWithChildren } from "react";
|
||
|
|
import { findModuleExport } from "../webpack";
|
||
|
|
|
||
|
|
export const ErrorBoundary = findModuleExport(
|
||
|
|
(e) => e.InstallErrorReportingStore && e?.prototype?.Reset && e?.prototype?.componentDidCatch,
|
||
|
|
) as Component<PropsWithChildren>;
|