import * as React from 'react' import { uniqueId } from 'lodash' export default class Round extends React.Component { static optionValue = 'Round' private path1 = uniqueId('react-path-') private filter1 = uniqueId('react-filter-') render () { const { path1, filter1 } = this return ( ) } }