import { Logo } from 'features/Logo' import { T9n } from 'features/T9n' import { useStatsView } from './hooks' import { StatsTable } from './components/StatsTable' import { Powered, Container } from './styled' const StatsView = () => { const { matchProfile, teamsStats } = useStatsView() return (
{matchProfile?.team1 && matchProfile?.team2 && ( )}
) } export default StatsView