this my code
import { useEffect, useState } from 'react';
import Tag from"../Tag/Tag";
import "./Contentstyle.css";
function Content() {
const[videos, setVideos] = useState([]);
const[shorts, setShort] = useState([]);
useEffect(() => {
const fetchVideos = async () =>{
const data = await fetch("https://localhost:3000/");
const json = await data.json();
setVideos(json);
};
fetchVideos();
} ,[]);
return (
<section id="Content">
<Tag></Tag>
<section id="the-card">
{videos.map((video) => {
console.log(video);
})}