From 2b89b344e201b886ed8cfb230d2caa5d8ae60e1c Mon Sep 17 00:00:00 2001 From: mahdi Date: Thu, 7 Jul 2022 18:30:45 +0430 Subject: [PATCH] update src/components/Accordion/index.js and src/components/Questions/index.js --- public/images/blue-cancle-icon.jpeg | Bin 0 -> 500 bytes public/images/blue-hamburger-menu.jpeg | Bin 0 -> 392 bytes src/components/Accordion/index.js | 4 ++-- src/components/Questions/index.js | 2 ++ 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 public/images/blue-cancle-icon.jpeg create mode 100644 public/images/blue-hamburger-menu.jpeg diff --git a/public/images/blue-cancle-icon.jpeg b/public/images/blue-cancle-icon.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1323726e36106a83c09815168b82c3cb1f55cdce GIT binary patch literal 500 zcmex=>ukC3pCfH06P05XITq?4J21E^7eo0A(TN+S4wfI*Oh zfs28QnNf*>Nsy6Qkn#T!1~H&hfzCt%91LtgaWw%3pmQ0Snb=`cj7-cdtZeKILW+Wp z!eUCwhQ>}nb)x9n8CcnY!is_nK+VjoFwMZw0BRRB6jDrNbqoyp@c$MA4>Kds8O(wV z_6&(R)pF^5#g@G0zGp12dMiKqlrJ3d)B4f&3H%dY9Qdwf{^IMq{H?bZ7soeQv_&XS zi*;M(c$e99x6qzVH&iMo-r0Wb>`&cyp0+W9ahw(H%sLy6y`Qk=o9<=}wIiFX#Vh&0 zoqgxO((W&VIq%`z!*6%)@l(${eQB|`a@y9Yt?Ru-0$e6-T9VOqKxVKSrsf$Yu;%m%Gxk2Vx>ukC3pCfH06P05XITq?4J21E^7eo0A(TN+S4wfI*Oh zL4ZMonNf*>Nsy6Qkn#T!1~H&hfzCt*j2u95WdR08CRP?^gd7tCBO5!1__W}V%U4(g z6{mnS1N9;lfX!fI2Z~DzGBB{CO0cjB1unWM`2Q9I570~|L1sY)dxon=H8gTgp4ro3 zdSd?V-A9*y{mkLyXu5kAMHv#fAOt1g| literal 0 HcmV?d00001 diff --git a/src/components/Accordion/index.js b/src/components/Accordion/index.js index 80ccf42..6c45126 100644 --- a/src/components/Accordion/index.js +++ b/src/components/Accordion/index.js @@ -1,7 +1,7 @@ import React, { useState } from "react"; import { DragDropContext, Droppable, Draggable } from "react-beautiful-dnd"; -import CircleInCircle from "../../MiniComponents/CircleInCircle"; -import Button from "../../ButtonDesign/Button"; +import CircleInCircle from "../CircleInCircle"; +import Button from "../Button"; const finalSpaceCharacters = [ { diff --git a/src/components/Questions/index.js b/src/components/Questions/index.js index 4b2ad8e..2206e02 100644 --- a/src/components/Questions/index.js +++ b/src/components/Questions/index.js @@ -1,4 +1,5 @@ import React from "react"; +import Accordion from "../Accordion"; import CustomSelectBox from "../CustomSelectBox"; const Questions = () => { @@ -12,6 +13,7 @@ const Questions = () => { { title: "سوال شماره ۳" }, ]} /> + ); };