Files
2026-08-27 21:09:14 +00:00

12 lines
179 B
JavaScript

import {useRef} from 'react';
function Component(props) {
const ref = useRef();
return ref?.current;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
};