| Total Complexity | 1 | 
| Complexity/F | 1 | 
| Lines of Code | 13 | 
| Function Count | 1 | 
| Duplicated Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | import React from "react"; | ||
| 2 | |||
| 3 | export default function ErrorButton() { | ||
| 4 | return ( | ||
| 5 | <button | ||
| 6 |       onClick={() => { | ||
| 7 |         throw new Error("This is your first error!"); | ||
| 8 | }} | ||
| 9 | > | ||
| 10 | Break the world | ||
| 11 | </button> | ||
| 12 | ); | ||
| 13 | } |