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