mirror of
https://github.com/lexogrine/cs2-react-hud.git
synced 2025-12-10 02:42:49 +01:00
19 lines
350 B
TypeScript
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
|
|
);
|
|
}
|
|
}
|