Files changed (1) hide show
  1. src/App.jsx +10 -0
src/App.jsx ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ function App() {
2
+ return (
3
+ <div>
4
+ <h1>Hello from React + Vite!</h1>
5
+ <p>Your app is ready for Hugging Face Spaces.</p>
6
+ </div>
7
+ )
8
+ }
9
+
10
+ export default App