mirror of
https://github.com/quantum5/totp.git
synced 2025-04-24 05:31:59 -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>,
|
|
);
|