|
|
|
|
@ -1,11 +1,10 @@ |
|
|
|
|
import React from 'react' |
|
|
|
|
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 { UserFavoritesStore } from 'features/UserFavorites/store' |
|
|
|
|
|
|
|
|
|
import { useTournamentPage } from './hooks' |
|
|
|
|
import { Content } from './styled' |
|
|
|
|
@ -17,7 +16,7 @@ export const TournamentPage = () => { |
|
|
|
|
} = useTournamentPage() |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<UserFavoritesStore> |
|
|
|
|
<Fragment> |
|
|
|
|
<UserFavorites /> |
|
|
|
|
<Content> |
|
|
|
|
<ProfileCard |
|
|
|
|
@ -27,6 +26,6 @@ export const TournamentPage = () => { |
|
|
|
|
/> |
|
|
|
|
<Matches /> |
|
|
|
|
</Content> |
|
|
|
|
</UserFavoritesStore> |
|
|
|
|
</Fragment> |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
|