2024-08-26 14:03:54 +00:00
|
|
|
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)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div>
|
|
|
|
<a href="https://vitejs.dev" target="_blank">
|
|
|
|
<img src={viteLogo} className="logo" alt="Vite logo" />
|
|
|
|
</a>
|
|
|
|
<a href="https://react.dev" target="_blank">
|
|
|
|
<img src={reactLogo} className="logo react" alt="React logo" />
|
|
|
|
</a>
|
|
|
|
</div>
|
2024-08-27 14:03:07 +00:00
|
|
|
<h1>Vite + React Application</h1>
|
2024-08-26 14:03:54 +00:00
|
|
|
<div className="card">
|
|
|
|
<button onClick={() => setCount((count) => count + 1)}>
|
|
|
|
count is {count}
|
|
|
|
</button>
|
|
|
|
<p>
|
|
|
|
Edit <code>src/App.jsx</code> and save to test HMR
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<p className="read-the-docs">
|
2024-08-27 14:03:07 +00:00
|
|
|
This is only to TEST AND CHECK the project folder and its new frameworks works in LIVE SERVER.
|
|
|
|
</p>
|
|
|
|
<p className="read-the-docs">
|
|
|
|
Also to share the link for client to check the features and updates directly in the SERVER and provide the feedback.
|
|
|
|
</p>
|
|
|
|
<p className="read-the-docs">
|
|
|
|
This will be updated daily/hourly and instantly/immediately and continuosly as we do the code and give continuous update on the client on the features working on
|
2024-08-26 14:03:54 +00:00
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App
|