Files
UT-Registration-Plus/src/pages/popup/index.tsx
2024-01-24 19:40:30 -06:00

6 lines
200 B
TypeScript

import React from 'react';
import { createRoot } from 'react-dom/client';
import PopupMain from '../../views/components/PopupMain';
createRoot(document.getElementById('root')).render(<PopupMain />);