You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
spa_instat_tv/src/features/PlayerPage/index.tsx

28 lines
604 B

import React, { Fragment } from 'react'
import { ProfileTypes } from 'config'
import { UserFavorites } from 'features/UserFavorites'
import { ProfileCard } from 'features/ProfileCard'
import { Matches } from 'features/Matches'
import { usePlayerPage } from './hooks'
export const PlayerPage = () => {
const {
infoItems,
matches,
name,
} = usePlayerPage()
return (
<Fragment>
<UserFavorites />
<ProfileCard
profileType={ProfileTypes.PLAYERS}
name={name}
infoItems={infoItems}
/>
<Matches matches={matches} />
</Fragment>
)
}