6 lines
188 B
TypeScript
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 />);
|