We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f284478 commit bc73890Copy full SHA for bc73890
example/src/App.tsx
@@ -30,11 +30,17 @@ export default function App() {
30
<FlatList
31
data={[
32
{
33
- title: 'Throw example error',
+ title: 'Throw error',
34
action: () => {
35
throw new Error(message);
36
},
37
38
+ {
39
+ title: 'Rejected promise',
40
+ action: () => {
41
+ Promise.reject(new Error(message));
42
+ },
43
44
45
title: 'console.error',
46
action: () => console.error(new Error(message)),
0 commit comments