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: [{}], +};