Spaces:
Sleeping
Sleeping
Update index.tsx
Browse files
index.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import React from 'react';
|
| 2 |
import ReactDOM from 'react-dom/client';
|
| 3 |
-
import
|
| 4 |
|
| 5 |
const rootElement = document.getElementById('root');
|
| 6 |
if (!rootElement) {
|
|
@@ -10,6 +10,6 @@ if (!rootElement) {
|
|
| 10 |
const root = ReactDOM.createRoot(rootElement);
|
| 11 |
root.render(
|
| 12 |
<React.StrictMode>
|
| 13 |
-
<
|
| 14 |
</React.StrictMode>
|
| 15 |
);
|
|
|
|
| 1 |
import React from 'react';
|
| 2 |
import ReactDOM from 'react-dom/client';
|
| 3 |
+
import ChatApp from './ChatApp';
|
| 4 |
|
| 5 |
const rootElement = document.getElementById('root');
|
| 6 |
if (!rootElement) {
|
|
|
|
| 10 |
const root = ReactDOM.createRoot(rootElement);
|
| 11 |
root.render(
|
| 12 |
<React.StrictMode>
|
| 13 |
+
<ChatApp />
|
| 14 |
</React.StrictMode>
|
| 15 |
);
|