From 7ea3f117f3868e5b500b8bbc3873226e2a3ae054 Mon Sep 17 00:00:00 2001 From: T'JAMPENS QUENTIN p2406187 Date: Wed, 11 Feb 2026 16:46:45 +0100 Subject: [PATCH] Move SearchBtn.tsx --- .../ToolBar/{components/searchBtn => tools}/SearchBtn.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename src/components/ToolBar/{components/searchBtn => tools}/SearchBtn.tsx (87%) diff --git a/src/components/ToolBar/components/searchBtn/SearchBtn.tsx b/src/components/ToolBar/tools/SearchBtn.tsx similarity index 87% rename from src/components/ToolBar/components/searchBtn/SearchBtn.tsx rename to src/components/ToolBar/tools/SearchBtn.tsx index c93e24a..316db18 100644 --- a/src/components/ToolBar/components/searchBtn/SearchBtn.tsx +++ b/src/components/ToolBar/tools/SearchBtn.tsx @@ -1,7 +1,7 @@ -import styles from "../../ToolBar.module.css" -import Button from "../../../ui/button/button"; +import styles from "../ToolBar.module.css" +import Button from "../../ui/button/button"; import { useEffect, useState } from "react"; -import SearchBar from "../../../SearchBar/SearchBar"; +import SearchBar from "../../SearchBar/SearchBar"; export default function SearchBtn() {