```jsx import { Search } from '@woocommerce/components'; const MySearch = withState( { selected: [], inlineSelected: [], } )( ( { selected, inlineSelected, setState } ) => (
Tags Below Input
setState( { selected: items } ) } />
Tags Inline with Input
setState( { inlineSelected: items } ) } inlineTags />
) ); ```