hutmind / FrontEnd /src /main.jsx
Huyen My
first
1539090
raw
history blame contribute delete
244 Bytes
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import './index.css';
import ChatBot from './ChatBot.jsx';
createRoot(document.getElementById('root')).render(
<StrictMode>
<ChatBot />
</StrictMode>
);