feat(renderer): mount UpdateBanner, FirstRunWizard, and CrashReportModal

This commit is contained in:
2026-06-08 06:43:40 +05:30
parent 691b00a2b8
commit 9b899b5205
3 changed files with 15 additions and 1 deletions
+4
View File
@@ -4,6 +4,8 @@ import { ModalLayer } from './components/modals/ModalLayer';
import { Toaster } from './components/ui/sonner';
import { ReplPanel } from './components/tools/ReplPanel';
import { PrintPreview } from './components/tools/PrintPreview';
import { UpdateBanner } from './components/UpdateBanner';
import { FirstRunWizard } from './components/FirstRunWizard';
import { useWelcomeTrigger } from './hooks/use-welcome-trigger';
function App() {
@@ -21,6 +23,8 @@ function App() {
<AppShell />
<ModalLayer />
<Toaster />
<UpdateBanner />
<FirstRunWizard />
<ReplPanel />
{printOpen && <PrintPreview onClose={() => setPrintOpen(false)} />}
</>