├── .gitignore ├── README.md ├── docs ├── assets │ ├── index.92882d24.css │ └── main.1e992a4a.js └── index.html ├── index.html ├── lib ├── components │ ├── ErrorBoundary.d.ts │ ├── ErrorBoundary.d.ts.map │ ├── ErrorBoundary.js │ ├── ErrorView.d.ts │ ├── ErrorView.d.ts.map │ ├── ErrorView.js │ ├── ErrorViewMacOS.d.ts │ ├── ErrorViewMacOS.d.ts.map │ ├── ErrorViewMacOS.js │ ├── ErrorViewWindows10.d.ts │ ├── ErrorViewWindows10.d.ts.map │ ├── ErrorViewWindows10.js │ ├── ErrorViewWindows9x.d.ts │ ├── ErrorViewWindows9x.d.ts.map │ └── ErrorViewWindows9x.js ├── example.d.ts ├── example.d.ts.map ├── example.js ├── index.cjs ├── index.d.ts ├── index.d.ts.map ├── index.js ├── index.mjs ├── interfaces.d.ts ├── interfaces.d.ts.map ├── interfaces.js └── style.css ├── package.json ├── screenshot.png ├── src ├── components │ ├── ErrorBoundary.tsx │ ├── ErrorView.tsx │ ├── ErrorViewMacOS.tsx │ ├── ErrorViewWindows10.tsx │ ├── ErrorViewWindows9x.tsx │ ├── macOS.module.css │ ├── windows10.module.css │ └── windows9x.module.css ├── example.tsx ├── index.tsx └── interfaces.ts ├── tsconfig.json ├── types.d.ts ├── vite.config.ts ├── vite.doc.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/index.92882d24.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/docs/assets/index.92882d24.css -------------------------------------------------------------------------------- /docs/assets/main.1e992a4a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/docs/assets/main.1e992a4a.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/docs/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/index.html -------------------------------------------------------------------------------- /lib/components/ErrorBoundary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorBoundary.d.ts -------------------------------------------------------------------------------- /lib/components/ErrorBoundary.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorBoundary.d.ts.map -------------------------------------------------------------------------------- /lib/components/ErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorBoundary.js -------------------------------------------------------------------------------- /lib/components/ErrorView.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorView.d.ts -------------------------------------------------------------------------------- /lib/components/ErrorView.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorView.d.ts.map -------------------------------------------------------------------------------- /lib/components/ErrorView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorView.js -------------------------------------------------------------------------------- /lib/components/ErrorViewMacOS.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewMacOS.d.ts -------------------------------------------------------------------------------- /lib/components/ErrorViewMacOS.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewMacOS.d.ts.map -------------------------------------------------------------------------------- /lib/components/ErrorViewMacOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewMacOS.js -------------------------------------------------------------------------------- /lib/components/ErrorViewWindows10.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewWindows10.d.ts -------------------------------------------------------------------------------- /lib/components/ErrorViewWindows10.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewWindows10.d.ts.map -------------------------------------------------------------------------------- /lib/components/ErrorViewWindows10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewWindows10.js -------------------------------------------------------------------------------- /lib/components/ErrorViewWindows9x.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewWindows9x.d.ts -------------------------------------------------------------------------------- /lib/components/ErrorViewWindows9x.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewWindows9x.d.ts.map -------------------------------------------------------------------------------- /lib/components/ErrorViewWindows9x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/components/ErrorViewWindows9x.js -------------------------------------------------------------------------------- /lib/example.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=example.d.ts.map -------------------------------------------------------------------------------- /lib/example.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/example.d.ts.map -------------------------------------------------------------------------------- /lib/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/example.js -------------------------------------------------------------------------------- /lib/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/index.cjs -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/index.d.ts.map -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/index.mjs -------------------------------------------------------------------------------- /lib/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/interfaces.d.ts -------------------------------------------------------------------------------- /lib/interfaces.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/interfaces.d.ts.map -------------------------------------------------------------------------------- /lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | exports.__esModule = true; 3 | -------------------------------------------------------------------------------- /lib/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/lib/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/ErrorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/ErrorView.tsx -------------------------------------------------------------------------------- /src/components/ErrorViewMacOS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/ErrorViewMacOS.tsx -------------------------------------------------------------------------------- /src/components/ErrorViewWindows10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/ErrorViewWindows10.tsx -------------------------------------------------------------------------------- /src/components/ErrorViewWindows9x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/ErrorViewWindows9x.tsx -------------------------------------------------------------------------------- /src/components/macOS.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/macOS.module.css -------------------------------------------------------------------------------- /src/components/windows10.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/windows10.module.css -------------------------------------------------------------------------------- /src/components/windows9x.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/components/windows9x.module.css -------------------------------------------------------------------------------- /src/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/example.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/types.d.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vite.doc.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/vite.doc.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkbt10/react-bluescreen/HEAD/yarn.lock --------------------------------------------------------------------------------