From 49e9b51d03330b98116ff91fb99b27900c2c2e1e Mon Sep 17 00:00:00 2001 From: claustra01 Date: Sun, 11 Aug 2024 08:22:26 +0900 Subject: [PATCH] fix: fmt --- src/pages/home/index.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/home/index.tsx b/src/pages/home/index.tsx index 8860550..517d70c 100644 --- a/src/pages/home/index.tsx +++ b/src/pages/home/index.tsx @@ -1,11 +1,11 @@ import { useEffect, useState } from "react"; import { useNavigate } from "react-router-dom"; +import HomePC from "../../components/responsive/homePC"; +import HomeSP from "../../components/responsive/homeSP"; import { DefaultButton } from "../../components/ui/Button"; import { useSocketRefStore } from "../../store"; import { device } from "../../utils/device"; import { requestPermission } from "../../utils/permission"; -import HomePC from "../../components/responsive/homePC"; -import HomeSP from "../../components/responsive/homeSP"; import styles from "./index.module.css"; function Home() { @@ -30,7 +30,6 @@ function Home() { }, []); return isPcScreen ? : ; - } export default Home;