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