diff --git a/src/pages/videos.tsx b/src/pages/videos.tsx index eb30da9..3f6e529 100644 --- a/src/pages/videos.tsx +++ b/src/pages/videos.tsx @@ -14,16 +14,31 @@ const VideoList: NextPage = () => {
-
-

- - video collection list - -

+
+ {[1, 2, 3].map((id) => ( + + ))}
); }; +const VideoCard = () => { + return ( +
+
+ Shoes +
+
+ Are pings bad? + 12 days ago +
+
+ ); +}; + export default VideoList;