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

6 lines
188 B
TypeScript

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