snowballtools-base/packages/frontend/src/App.tsx
Nabarun Gogoi 2182a5a3fc
Create react app with tailwind, typescript, eslint and prettier (#4)
Co-authored-by: neeraj <neeraj.rtly@gmail.com>
2023-12-08 10:50:55 +05:30

30 lines
692 B
TypeScript

import React from 'react';
import logo from './logo.svg';
function App() {
return (
<div className="text-center">
<header className="bg-gray-900 min-h-screen flex flex-col items-center justify-center text-white text-2xl">
<img
src={logo}
className="animate-spin pointer-events-none h-96"
alt="logo"
/>
<p>
Edit <code>src/App.tsx</code> and save to reload.
</p>
<a
className="text-blue-400"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;