mirror of
https://github.com/detleph/components.git
synced 2026-09-05 23:43:50 +02:00
Initialize React app using create-vite
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import { useState } from "react";
|
||||
import "./App.css";
|
||||
|
||||
function App() {
|
||||
const [count, setCount] = useState(0);
|
||||
|
||||
return <div className="App">Cool, now please start the storybook instead.</div>;
|
||||
}
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user