Initialize React app using create-vite

This commit is contained in:
Stephan
2022-09-29 20:32:27 +02:00
parent 0d149fdbcc
commit 227696e83b
10 changed files with 106 additions and 0 deletions
+10
View File
@@ -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;