mirror of
https://github.com/quantum5/totp.git
synced 2025-04-24 13:41:58 -04:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom/client';
|
||
|
import App from './App.tsx';
|
||
|
import './index.scss';
|
||
|
|
||
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
||
|
<React.StrictMode>
|
||
|
<App/>
|
||
|
</React.StrictMode>,
|
||
|
);
|