Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/repro-bailout-nopanic-shouldnt-outline.expect.md
2026-08-27 21:09:14 +00:00

27 lines
381 B
Markdown

## Input
```javascript
// @panicThreshold(none)
'use no memo';
function Foo() {
return <button onClick={() => alert('hello!')}>Click me!</button>;
}
```
## Code
```javascript
// @panicThreshold(none)
"use no memo";
function Foo() {
return <button onClick={() => alert("hello!")}>Click me!</button>;
}
```
### Eval output
(kind: exception) Fixture not implemented