initial commit

This commit is contained in:
paul
2024-08-04 12:08:30 +05:30
commit 12431e0c2b
22 changed files with 19194 additions and 0 deletions

25
src/App.js Normal file
View File

@@ -0,0 +1,25 @@
import './styles/tailwind.css'
import logo from './assets/logo/logo.svg';
function App() {
return (
<div className="tw-w-full tw-bg-black">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;