mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-03 09:08:52 +01:00
* build/refactor: move lint/prettier packages to project root, install husky, add pre-commit hook * refactor: reformat files * build: put full eslintrc back with all rules
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
import { createRoot } from 'react-dom/client';
|
|
import App from './App';
|
|
import './style.css';
|
|
import './mobile.css';
|
|
import { ApiErrorBoundaryProvider } from './hooks/ApiErrorBoundaryContext';
|
|
|
|
const container = document.getElementById('root');
|
|
const root = createRoot(container);
|
|
|
|
root.render(
|
|
<ApiErrorBoundaryProvider>
|
|
<App />
|
|
</ApiErrorBoundaryProvider>
|
|
);
|