15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import {useRef} from 'react';
|
|
|
|
function Component() {
|
|
'use no forget';
|
|
const ref = useRef(null);
|
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
ref.current = 'bad';
|
|
return <button ref={ref} />;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [],
|
|
};
|