From e0a03406a5e64b76e77f916ec4814c664c6a10ef Mon Sep 17 00:00:00 2001 From: Yasuaki Uechi Date: Wed, 14 Aug 2019 20:00:31 +0900 Subject: [PATCH] fix(web): rename hooks file --- web/src/App.js | 2 +- web/src/{hooks/state.js => util/hooks.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename web/src/{hooks/state.js => util/hooks.js} (100%) diff --git a/web/src/App.js b/web/src/App.js index bb2ce34..d7cc343 100644 --- a/web/src/App.js +++ b/web/src/App.js @@ -23,7 +23,7 @@ import Welcome from './components/Welcome' import Footer from './components/Footer' import Suggestion from './components/Suggestion' -import { useDeferredState } from './hooks/state' +import { useDeferredState } from './util/hooks' import { mobile } from './util/css' import { isStandalone } from './util/pwa' diff --git a/web/src/hooks/state.js b/web/src/util/hooks.js similarity index 100% rename from web/src/hooks/state.js rename to web/src/util/hooks.js