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