Línea 10... |
Línea 10... |
10 |
import SearchList from '../../../../components/SearchList'
|
10 |
import SearchList from '../../../../components/SearchList'
|
11 |
import TitleSection from '../../../../components/TitleSection'
|
11 |
import TitleSection from '../../../../components/TitleSection'
|
12 |
import EmptySection from '../../../../shared/empty-section/EmptySection'
|
12 |
import EmptySection from '../../../../shared/empty-section/EmptySection'
|
13 |
import AddGroupModal from './add-group-modal/AddGroupModal'
|
13 |
import AddGroupModal from './add-group-modal/AddGroupModal'
|
Línea 14... |
Línea 14... |
14 |
|
14 |
|
15 |
const MyGroups = ({ groupTypes, industries, addNotification }) => {
|
15 |
const MyGroups = ({ groupTypes, industries, addNotification, LABELS }) => {
|
16 |
const [groups, setGroups] = useState([])
|
16 |
const [groups, setGroups] = useState([])
|
17 |
const [loading, setLoading] = useState(true)
|
17 |
const [loading, setLoading] = useState(true)
|
Línea 18... |
Línea 18... |
18 |
const [showAddGroupModal, setShowAddGroupModal] = useState(false)
|
18 |
const [showAddGroupModal, setShowAddGroupModal] = useState(false)
|