import * as classnames from 'classnames'; import * as React from 'react'; import { Mod, isPrefix, isSuffix } from './Extended'; import { Intersperse } from '../../../../util/react'; export interface Props { mods: Mod[]; } export default class ExtendedStatName extends React.PureComponent { public render() { const { mods } = this.props; return ( ' + '}> {mods.map(mod => ( {mod.name} ))} ); } }