| Línea 20... |
Línea 20... |
| 20 |
import ProfileInfo from '@components/widgets/default/ProfileWidget'
|
20 |
import ProfileInfo from '@components/widgets/default/ProfileWidget'
|
| 21 |
import EmptySection from '@components/UI/EmptySection'
|
21 |
import EmptySection from '@components/UI/EmptySection'
|
| 22 |
import ConfirmModal from '@components/modals/ConfirmModal'
|
22 |
import ConfirmModal from '@components/modals/ConfirmModal'
|
| Línea 23... |
Línea 23... |
| 23 |
|
23 |
|
| 24 |
const NotificationsPage = () => {
|
24 |
const NotificationsPage = () => {
|
| 25 |
const { data: notifications } = useFetch('/notifications')
|
25 |
const { data: notifications } = useFetch('/notifications', [])
|
| 26 |
const { data: user } = useFetch('/helpers/menu')
|
26 |
const { data: user } = useFetch('/helpers/menu')
|
| 27 |
const [setNotifications] = useState([])
|
27 |
const [setNotifications] = useState([])
|
| 28 |
const [confirmModalShow, setConfirmModalShow] = useState(false)
|
28 |
const [confirmModalShow, setConfirmModalShow] = useState(false)
|