From d12d82bc07224f5ada983b7c60b7cad9944c906b Mon Sep 17 00:00:00 2001 From: mahdi Date: Tue, 19 Jul 2022 12:40:15 +0430 Subject: [PATCH] update src/components/Accordion/index.js, src/components/Tabbar/index.js and src/index.js --- src/components/Tabbar/index.js | 2 +- src/index.js | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/Tabbar/index.js b/src/components/Tabbar/index.js index cf1a4c7..fa1f45d 100644 --- a/src/components/Tabbar/index.js +++ b/src/components/Tabbar/index.js @@ -21,7 +21,7 @@ const Tabbar = ({ tabs }) => { activeTab === tab ? "bg-[#F1F3FF] text-[#3C58EA]" : "bg-white text-[#333333]" - } w-full p-3 text-sm border border-b-2 border-t-2 border-[#3C58EA]`} + } w-full p-3 text-xs border border-b-2 border-t-2 border-[#3C58EA]`} icon={activeTab === tab ? "images/blue-correct-thick-icon.svg" : ""} onClick={() => setActiveTab(tab)} /> diff --git a/src/index.js b/src/index.js index e11d3f0..cb67123 100644 --- a/src/index.js +++ b/src/index.js @@ -5,11 +5,7 @@ import App from "./App"; import reportWebVitals from "./reportWebVitals"; const root = ReactDOM.createRoot(document.getElementById("root")); -root.render( - - - -); +root.render(); // If you want to start measuring performance in your app, pass a function // to log results (for example: reportWebVitals(console.log))