Interactive error
This page throws an error once the button is clicked.
1
2
3
4
5
6
7
8
9
10
<Button
onClick={(): void => {
setIsClicked(true);
throw new Error('Page 500 error example (handled)');
}}
>
Will it crash the whole app?
</Button>