From 1ed742afd77917ecadcab069ca0b922d6a984429 Mon Sep 17 00:00:00 2001 From: MarconLP <13001502+MarconLP@users.noreply.github.com> Date: Tue, 11 Apr 2023 00:38:34 +0200 Subject: [PATCH] add video cards --- src/pages/videos.tsx | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) 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;