import React, { useState } from 'react' import { Routes, Route, Link } from 'react-router-dom' import reactLogo from './assets/react.svg' import viteLogo from '/vite.svg' import './App.css' import Dashboard from './pages/Dashboard' function Home() { const [count, setCount] = useState(0) 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 function App() { return (
} /> } />
) }