We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81594af commit 54510efCopy full SHA for 54510ef
1 file changed
src/App.tsx
@@ -19,18 +19,8 @@ export default function App() {
19
{tools.map((tool) => (
20
<ToolCard key={tool.name} name={tool.name} content={tool.component} />
21
))}
22
- </main>
23
- );
24
-}
25
26
-export default function ErrorButton() {
27
- return (
28
- <button
29
- onClick={() => {
30
- throw new Error("This is your first error!");
31
- }}
32
- >
33
- Break the world
34
- </button>
+ <ToolCard name="Sentry Test" content={<ErrorButton />} />
+ </main>
35
);
36
}
0 commit comments