12 lines
179 B
JavaScript
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: [],
|
|
};
|