We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e554f44 commit 2596251Copy full SHA for 2596251
1 file changed
src/App.tsx
@@ -1,4 +1,5 @@
1
import React from "react";
2
+import ErrorButton from "./components/ErrorButton";
3
import ToolCard from "./components/ToolCard";
4
import Calculator from "./tools/Calculator";
5
import PasswordGenerator from "./tools/PasswordGenerator";
@@ -15,6 +16,7 @@ const tools = [
15
16
export default function App() {
17
return (
18
<main className="tool-grid">
19
+ <ErrorButton /> {/* 👈 click this to send a test error */}
20
{tools.map((tool) => (
21
<ToolCard key={tool.name} name={tool.name} content={tool.component} />
22
))}
0 commit comments