From 91b0ad2a74babcb9b9c5e4c5d0dae4caddd55ce4 Mon Sep 17 00:00:00 2001 From: bluemoehre Date: Wed, 1 Jul 2026 00:17:28 +0200 Subject: [PATCH] code format --- src/App.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 3784f9c..cc85611 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,16 +1,18 @@ import { useState } from 'react' -import { HomeView } from '@/views/HomeView' -import { SettingsView } from '@/views/SettingsView' -import { JobsView } from '@/views/JobsView' -import { NotificationsView } from '@/views/NotificationsView' import { Dialog, DialogContent, + DialogFooter, DialogHeader, DialogTitle, } from '@/components/ui/dialog' +import { HomeView } from '@/views/HomeView' +import { JobsView } from '@/views/JobsView' +import { NotificationsView } from '@/views/NotificationsView' +import { SettingsView } from '@/views/SettingsView' + export function App() { const [showSettings, setShowSettings] = useState(false) const [showJobs, setShowJobs] = useState(false)