From cdd29f05fe540cb2579f5c9706a9f3e15b46d3e7 Mon Sep 17 00:00:00 2001 From: mahdi andalib Date: Mon, 11 Apr 2022 21:28:44 +0430 Subject: [PATCH] update App.js --- src/App.js | 4 +++- src/components/CardTrelloDesign/index.js | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 src/components/CardTrelloDesign/index.js diff --git a/src/App.js b/src/App.js index 013a18c..eeb1563 100644 --- a/src/App.js +++ b/src/App.js @@ -72,6 +72,7 @@ import ProfilePicNextToEachOther from "./components/ProfilePicNextToEachOther"; import SelectYear from "./components/SelectYear"; import IndianaDragScroll from "./components/IndianaDragScroll"; import TestComponentNew from "./components/TestComponentNew"; +import CardTrelloDesign from "./components/CardTrelloDesign"; // import Digikala from "./components/Digikala/ImageSlider"; @@ -147,11 +148,12 @@ function App() { {/* */} {/* */} {/* */} - + {/* */} {/* */} {/* */} {/* */} {/* */} + ); diff --git a/src/components/CardTrelloDesign/index.js b/src/components/CardTrelloDesign/index.js new file mode 100644 index 0000000..aa8d92b --- /dev/null +++ b/src/components/CardTrelloDesign/index.js @@ -0,0 +1,19 @@ +import React from "react"; + +const CardTrelloDesign = () => { + return ( +
+ {/* top */} +
+ {/* right */} +
+
+
+ {/* left */} +
+
+
+ ); +}; + +export default CardTrelloDesign;