Línea 1... |
Línea 1... |
1 |
import React, { useEffect, useState } from 'react'
|
1 |
import React, { useEffect, useState } from 'react'
|
2 |
import { Button, Modal } from 'react-bootstrap'
|
2 |
import { Button, Modal } from 'react-bootstrap'
|
3 |
import { axios } from '../../../utils'
|
3 |
import { axios } from '../../utils'
|
4 |
import { useForm } from 'react-hook-form'
|
4 |
import { useForm } from 'react-hook-form'
|
5 |
import { useDispatch, useSelector } from 'react-redux'
|
5 |
import { useDispatch, useSelector } from 'react-redux'
|
6 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
6 |
import { addNotification } from '../../redux/notification/notification.actions'
|
Línea 7... |
Línea 7... |
7 |
|
7 |
|
8 |
import Spinner from '../../../shared/loading-spinner/Spinner'
|
8 |
import Spinner from '../UI/Spinner'
|
9 |
import TagsInput from '../../../shared/tags-input/TagsInput'
|
9 |
import TagsInput from '../../../shared/tags-input/TagsInput'
|
Línea 10... |
Línea 10... |
10 |
import useFetchHelper from '../../hooks/useFetchHelper'
|
10 |
import useFetchHelper from '../../hooks/useFetchHelper'
|
11 |
|
11 |
|