7 lines
129 B
JavaScript
7 lines
129 B
JavaScript
// @panicThreshold(none)
|
|
'use no memo';
|
|
|
|
function Foo() {
|
|
return <button onClick={() => alert('hello!')}>Click me!</button>;
|
|
}
|