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)