import { PureComponent } from 'react'; import { Props as StatProps } from '../stat/Stat'; export interface Props { stats: StatProps[]; } export default class Simple extends PureComponent { public render() { return 'SimpleMods'; } }