erp-platform/ui/src/main.tsx
2025-08-18 17:55:51 +03:00

16 lines
529 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* eslint-disable import/default */
import ReactDOM from 'react-dom/client'
import App from './App'
import './index.css'
import { UiEvalService } from './services/UiEvalService'
import 'devextreme-react/text-area'
import 'devextreme-react/html-editor'
import config from 'devextreme/core/config'
import { licenseKey } from './devextreme-license'
// Lisansı uygulama başlamadan önce kaydediyoruz
config({ licenseKey })
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<App />)
UiEvalService.Init()