init galery

This commit is contained in:
2023-03-06 17:15:48 +01:00
commit f57886841f
12 changed files with 29226 additions and 0 deletions

4
src/App.css Normal file
View File

@ -0,0 +1,4 @@
.App {
text-align: center;
}

12
src/App.tsx Normal file
View File

@ -0,0 +1,12 @@
import React from 'react';
import './App.css';
function App() {
return (
<div className="App">
<h1>Gallery</h1>
</div>
);
}
export default App;

0
src/index.css Normal file
View File

14
src/index.tsx Normal file
View File

@ -0,0 +1,14 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);