mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-07 20:07:34 -06:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import App from './App.tsx';
|
|
import './App.css';
|
|
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
);
|