import * as React from 'react' import { uniqueId } from 'lodash' import FacialHair from './facialHair' import HairColor from './HairColor' export default class LongHairNotTooLong extends React.Component { static optionValue = 'LongHairNotTooLong' private mask1 = uniqueId('react-mask-') private mask2 = uniqueId('react-mask-') private path1 = uniqueId('react-path-') private path2 = uniqueId('react-path-') render () { const { mask1, mask2, path1, path2 } = this return ( {this.props.children} ) } }