15 lines
264 B
JavaScript
15 lines
264 B
JavaScript
import MatchesInterface from "../components/matches/MatchesProfilesTab"
|
|
import SearchUI from "../components/matches/SearchUI"
|
|
|
|
const MatchesPage = () => {
|
|
return (
|
|
<>
|
|
<SearchUI/>
|
|
<MatchesInterface/>
|
|
|
|
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default MatchesPage |