From 2da8dad8db84c78066f2b6aa7044e00fcfda73a4 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Wed, 31 Jul 2024 23:53:43 +0900 Subject: SignUp.tsx を表示するように変更する MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 35 ++++------------------------------- 1 file changed, 4 insertions(+), 31 deletions(-) (limited to 'src/App.tsx') diff --git a/src/App.tsx b/src/App.tsx index afe48ac..fa6d181 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,35 +1,8 @@ -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) +import { SignUp } from './SignUp.tsx' +export const App = () => { return ( - <> -
- - Vite logo - - - React logo - -
-

Vite + React

-
- -

- Edit src/App.tsx and save to test HMR -

-
-

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

- - ) + + ); } -export default App -- cgit v1.2.3