1
0
mirror of https://github.com/lexogrine/cs2-react-hud.git synced 2025-12-10 02:42:49 +01:00
cs2-react-hud/src/HUD/TeamOverview/TeamOverview.tsx
2023-09-11 12:37:32 +02:00

19 lines
350 B
TypeScript

import React from 'react';
import * as I from '../../api/interfaces';
import "./teamoverview.scss";
interface IProps {
team: I.Team,
show: boolean,
veto: I.Veto | null
}
export default class TeamOverview extends React.Component<IProps> {
render() {
if(!this.props.team) return null;
return (
null
);
}
}