Skip to content

Commit 2596251

Browse files
authored
Improved sentry structure
1 parent e554f44 commit 2596251

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from "react";
2+
import ErrorButton from "./components/ErrorButton";
23
import ToolCard from "./components/ToolCard";
34
import Calculator from "./tools/Calculator";
45
import PasswordGenerator from "./tools/PasswordGenerator";
@@ -15,6 +16,7 @@ const tools = [
1516
export default function App() {
1617
return (
1718
<main className="tool-grid">
19+
<ErrorButton /> {/* 👈 click this to send a test error */}
1820
{tools.map((tool) => (
1921
<ToolCard key={tool.name} name={tool.name} content={tool.component} />
2022
))}

0 commit comments

Comments
 (0)