Port from CRT to Vite
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
import { useState } from 'react'
|
||||
import ReactLogo from './assets/react.svg?react'
|
||||
//import ViteLogo from '/vite.svg?react'
|
||||
import './App.css'
|
||||
|
||||
|
||||
function App() {
|
||||
const [count, setCount] = useState(0)
|
||||
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
<a href="https://vite.dev" target="_blank">
|
||||
{/* <ViteLogo/> */}
|
||||
</a>
|
||||
<a href="https://react.dev" target="_blank">
|
||||
<ReactLogo style={{background: "blue", padding: 96}} />
|
||||
</a>
|
||||
</div>
|
||||
<h1>Vite + React</h1>
|
||||
<div className="card">
|
||||
<button onClick={() => setCount((count) => count + 1)}>
|
||||
count is {count}
|
||||
</button>
|
||||
<p>
|
||||
Edit <code>src/App.tsx</code> and save to test HMR
|
||||
</p>
|
||||
</div>
|
||||
<p className="read-the-docs">
|
||||
Click on the Vite and React logos to learn more
|
||||
</p>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
Reference in New Issue
Block a user