mirror of
https://github.com/detleph/components.git
synced 2026-09-04 08:36:03 +02:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
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;
|