| import React, { useEffect } from 'react'; |
| import Header from '../../components/Header'; |
| import { useGroupStore } from '../../context/useGroupStore'; |
| import GroupFilters from './GroupFilters'; |
| import GroupList from './GroupList'; |
| import GroupPagination from './GroupPagination'; |
| import './InterestGroup.css'; |
| const InterestGroup = () => { |
| const { fetchGroupList, setPage, handleSearch } = useGroupStore(); |
| <div className="interest-group-container"> |
| <div className="interest-group-card"> |
| export default InterestGroup; |