From 64da9e09e10faf5b1546dcd862aa164a809c7b25 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 14 Dec 2025 22:23:49 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Login=20feature=20updated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.jsx | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index f67355a..095a7c3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,21 +1,13 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' -import './App.css' +import { useState } from "react"; +import reactLogo from "./assets/react.svg"; +import viteLogo from "/vite.svg"; +import "./App.css"; function App() { - const [count, setCount] = useState(0) + const [count, setCount] = useState(0); return ( <> -
- - Vite logo - - - React logo - -

Vite + React

-

- Click on the Vite and React logos to learn more -

- ) + ); } -export default App +export default App;