function VideoTab() {
  const ref = useRef();
  let x = () => {
    ref.current = 1;
  };

  return <VideoList videos={x} />;
}