error.ref-optional.js12 lines
mainRawimport {useRef} from 'react';
function Component(props) {
const ref = useRef();
return ref?.current;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
};
Loading syntax highlighting…