Files

9 lines
128 B
JavaScript
Raw Permalink Normal View History

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