code format
This commit is contained in:
+6
-4
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user