Files

9 lines
127 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function VideoTab() {
const ref = useRef();
let x = () => {
ref.current?.x;
};
return <VideoList videos={x} />;
}