Add React analysaattori

This commit is contained in:
Aarni Koskela
2021-02-22 14:40:26 +02:00
parent ac933d101d
commit 511b2da2f3
11 changed files with 11547 additions and 0 deletions

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')
);