mafzaal's picture
Enhance Dockerfile and frontend structure for RAG application
102c540
raw
history blame contribute delete
256 Bytes
import React from 'react';
import ReactDOM from 'react-dom/client';
import './globals.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);