fall-detection / src /index.js
Kaelan
start
01e1043
raw
history blame
224 Bytes
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')
);