aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApp.client.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-01 22:07:29 +0900
committernsfisis <nsfisis@gmail.com>2024-08-01 22:07:29 +0900
commit00e50b2dcfed209669c46da54dc07905d65887b8 (patch)
treee330b62109b7d0f539ffafee1c9a77203bed002b /frontend/app/components/GolfPlayApp.client.tsx
parentae750a66feb478b06ae62bf8947782c11606de2d (diff)
downloadiosdc-japan-2024-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.gz
iosdc-japan-2024-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.zst
iosdc-japan-2024-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.zip
chore(frontend): [biome] organize imports
Diffstat (limited to 'frontend/app/components/GolfPlayApp.client.tsx')
-rw-r--r--frontend/app/components/GolfPlayApp.client.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/app/components/GolfPlayApp.client.tsx b/frontend/app/components/GolfPlayApp.client.tsx
index 2179b42..0ab8fff 100644
--- a/frontend/app/components/GolfPlayApp.client.tsx
+++ b/frontend/app/components/GolfPlayApp.client.tsx
@@ -1,12 +1,12 @@
-import type { components } from "../.server/api/schema";
-import { useState, useEffect } from "react";
+import { useEffect, useState } from "react";
import useWebSocket, { ReadyState } from "react-use-websocket";
import { useDebouncedCallback } from "use-debounce";
+import type { components } from "../.server/api/schema";
import GolfPlayAppConnecting from "./GolfPlayApps/GolfPlayAppConnecting";
-import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting";
-import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting";
-import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming";
import GolfPlayAppFinished from "./GolfPlayApps/GolfPlayAppFinished";
+import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming";
+import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting";
+import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting";
type WebSocketMessage = components["schemas"]["GamePlayerMessageS2C"];