tried to add analyitics but failed

This commit is contained in:
Viktor Rådberg
2023-08-26 19:26:46 +02:00
parent 51e9056eac
commit 3d8d7525d0
3 changed files with 18 additions and 11 deletions

View File

@@ -1,12 +1,14 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App.tsx';
import './index.css';
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>,
)
</React.StrictMode>
);