for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import React from "react";
export default function ErrorButton() {
return (
<button
onClick={() => {
throw new Error("This is your first error!");
}}
>
Break the world
</button>
);
}