Create mapper to visualize owntracks data

This commit is contained in:
2023-10-03 09:32:27 +00:00
parent 1d5f63f86d
commit b275305434
7 changed files with 12476 additions and 0 deletions

10
mapper/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')
);