function VideoTab() {
const ref = useRef();
let x = () => {
ref.current = 1;
};
return <VideoList videos={x} />;
}
function VideoTab() {
const ref = useRef();
let x = () => {
ref.current = 1;
};
return <VideoList videos={x} />;
}