code format
This commit is contained in:
+6
-4
@@ -1,16 +1,18 @@
|
|||||||
import { useState } from 'react'
|
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 {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
|
DialogFooter,
|
||||||
DialogHeader,
|
DialogHeader,
|
||||||
DialogTitle,
|
DialogTitle,
|
||||||
} from '@/components/ui/dialog'
|
} 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() {
|
export function App() {
|
||||||
const [showSettings, setShowSettings] = useState(false)
|
const [showSettings, setShowSettings] = useState(false)
|
||||||
const [showJobs, setShowJobs] = useState(false)
|
const [showJobs, setShowJobs] = useState(false)
|
||||||
|
|||||||
Reference in New Issue
Block a user