import * as React from 'react'; import SimpleStats from './SimpleStats'; import ExtendedStats from './ExtendedStats'; import Extended, { ModGroup } from './Extended'; export interface Props { className: string; extended?: Extended; group: ModGroup; } export default class Stats extends React.PureComponent { public render() { const { extended, group, ...props } = this.props; if (extended == null) { return ; } else { return ; } } }