Add basic create-react-app

This commit is contained in:
2020-05-11 11:47:56 +02:00
parent 69b21cfe0f
commit 36a4448ffe
11 changed files with 10944 additions and 0 deletions

11
src/App.js Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
function App() {
return (
<div>
<p>It works</p>
</div>
);
}
export default App;

10
src/index.js Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);