From 3d7b682af94ae038bf890af13fa9b5e7cecb34a3 Mon Sep 17 00:00:00 2001 From: mahdi Date: Sun, 24 Apr 2022 10:36:25 +0430 Subject: [PATCH] update 1 file and create 1 file --- src/App.js | 1 + src/components/BoxNextToEachOther/index.js | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/components/BoxNextToEachOther/index.js diff --git a/src/App.js b/src/App.js index 5ae518c..423f778 100644 --- a/src/App.js +++ b/src/App.js @@ -172,6 +172,7 @@ function App() { {/* */} {/* */} {/* */} + {/*
diff --git a/src/components/BoxNextToEachOther/index.js b/src/components/BoxNextToEachOther/index.js new file mode 100644 index 0000000..71653a2 --- /dev/null +++ b/src/components/BoxNextToEachOther/index.js @@ -0,0 +1,11 @@ +import React from "react"; + +const BoxNextToEachOther = () => { + return
BoxNextToEachOther
; +}; + +export default BoxNextToEachOther; + +BoxNextToEachOther.defaultProps = { + items: [{}], +};