repo initialized

This commit is contained in:
Wenszel
2021-03-13 14:48:55 +01:00
commit 5e52ff6fe4
11 changed files with 39523 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import './App.css';
function App() {
return (
<div>
Hello World!
</div>
);
}
export default App;
View File
+11
View File
@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);