From 41dd60aabc8f055011fcf2b24d974fff494d1cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20CHAUVIN?= Date: Mon, 26 Sep 2022 12:27:55 +0200 Subject: [PATCH] [ADD] suggestion cards --- front/views/HomeView/Suggestions.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 front/views/HomeView/Suggestions.tsx diff --git a/front/views/HomeView/Suggestions.tsx b/front/views/HomeView/Suggestions.tsx new file mode 100644 index 0000000..a403e0f --- /dev/null +++ b/front/views/HomeView/Suggestions.tsx @@ -0,0 +1,24 @@ +import React from "react"; +import SongCard from "../../components/songCard"; +import Row from "../../components/row"; + +const Suggestions = () => { + return ( + + + + + + + ); +} + +export default Suggestions; \ No newline at end of file