9 lines
112 B
JavaScript
9 lines
112 B
JavaScript
|
function Component(props) {
|
||
|
let x;
|
||
|
try {
|
||
|
throw [];
|
||
|
} catch (e) {
|
||
|
e |> x.push(%);
|
||
|
}
|
||
|
return x;
|
||
|
}
|