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