diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:07:29 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:07:29 +0900 |
| commit | 00e50b2dcfed209669c46da54dc07905d65887b8 (patch) | |
| tree | e330b62109b7d0f539ffafee1c9a77203bed002b /frontend/app/components/GolfWatchApp.client.tsx | |
| parent | ae750a66feb478b06ae62bf8947782c11606de2d (diff) | |
| download | iosdc-japan-2025-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.gz iosdc-japan-2025-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.tar.zst iosdc-japan-2025-albatross-00e50b2dcfed209669c46da54dc07905d65887b8.zip | |
chore(frontend): [biome] organize imports
Diffstat (limited to 'frontend/app/components/GolfWatchApp.client.tsx')
| -rw-r--r-- | frontend/app/components/GolfWatchApp.client.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/app/components/GolfWatchApp.client.tsx b/frontend/app/components/GolfWatchApp.client.tsx index 5990fd4..0373944 100644 --- a/frontend/app/components/GolfWatchApp.client.tsx +++ b/frontend/app/components/GolfWatchApp.client.tsx @@ -1,11 +1,11 @@ -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 type { components } from "../.server/api/schema"; import GolfWatchAppConnecting from "./GolfWatchApps/GolfWatchAppConnecting"; -import GolfWatchAppWaiting from "./GolfWatchApps/GolfWatchAppWaiting"; -import GolfWatchAppStarting from "./GolfWatchApps/GolfWatchAppStarting"; -import GolfWatchAppGaming from "./GolfWatchApps/GolfWatchAppGaming"; import GolfWatchAppFinished from "./GolfWatchApps/GolfWatchAppFinished"; +import GolfWatchAppGaming from "./GolfWatchApps/GolfWatchAppGaming"; +import GolfWatchAppStarting from "./GolfWatchApps/GolfWatchAppStarting"; +import GolfWatchAppWaiting from "./GolfWatchApps/GolfWatchAppWaiting"; type WebSocketMessage = components["schemas"]["GameWatcherMessageS2C"]; |
