From 7f0a11d5d49b7776b081a511356c5d44ed54bc92 Mon Sep 17 00:00:00 2001 From: sa_yoshiii Date: Mon, 11 Jul 2022 12:17:35 +0900 Subject: [PATCH] =?UTF-8?q?=E6=A4=9C=E7=B4=A2=E7=B5=90=E6=9E=9C=E4=B8=80?= =?UTF-8?q?=E8=A6=A7=E3=83=9A=E3=83=BC=E3=82=B8=E3=83=98=E3=83=83=E3=83=80?= =?UTF-8?q?=E3=83=BC=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 52 +++++++++++++++++++++++++++++++++++++++------- src/utils/media.ts | 5 +++++ 2 files changed, 49 insertions(+), 8 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 1818bbf..cc0e4e6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,6 +6,7 @@ import Button from "./component/Button"; import Gallery from "./component/Gallery"; import { color } from "./utils/color"; import Label from "./component/Label"; +import { contWidth } from "./utils/media"; // import Setword from "./pages/Setwords"; // import Result from "./pages/Result"; @@ -75,10 +76,15 @@ function App() { {isDisplay ? ( <> + + + {searchWords} + + - + ) : ( @@ -106,11 +112,14 @@ function App() { {searchWords.length !== 0 && ( - - {searchWords.map((word, index) => ( - - ))} - + <> + Setting Words + + {searchWords.map((word, index) => ( + + ))} + + )}