saahildcom/src/App.tsx

15 lines
234 B
TypeScript
Raw Normal View History

2024-06-11 03:46:47 +00:00
import React from 'react';
2024-06-12 02:37:31 +00:00
import Main from './components/main';
2024-06-11 03:46:47 +00:00
// import logo from './logo.svg';
// import './App.css';
function App() {
return (
2024-06-12 02:37:31 +00:00
<div style={{ zIndex: 9999 }}>
<Main />
2024-06-11 03:46:47 +00:00
</div>
);
}
export default App;