12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import "./index.css";
|
|
|
|
export function App() {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen">
|
|
<h1>Let's build together</h1>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|