15 lines
484 B
TypeScript
15 lines
484 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
// Forward console.error/warn/log to backend in dev mode so we can tail webview.log
|
|
import './lib/dev-logger';
|
|
// Tauri bridge polyfill: must be imported before App so window.electronAPI is available to all components
|
|
import './lib/tauri-bridge';
|
|
import App from './App';
|
|
import './index.css';
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
);
|