ArtistDropdown example:

```jsx
import mockClient from 'lib/apolloMock';
import { ArtistDropdown } from 'frontend-participant-components';
import { ApolloProvider } from '@apollo/client';


initialState = { value: [] };

<ApolloProvider client={ mockClient }>
    <ArtistDropdown
        formFieldProps={{
            className: 'StyleguideFormField',
            label: 'Test',
            help: 'Example for ArtistDropdown component'
        }}
        multi={ true }
        onChange={ value => setState({ value }) }
        value={ state.value }
        vendorId={ 100 }
        subaccountId={ 100 }
        projectId={ '456' }
        productName={ 'Product Name' }
        upc={ 'UPC' }
        participationRole={ 'performer' }
        isParticipantProfilesViewEnabled={ true }
        isParticipantProfilesAddEnabled={ true }
        isParticipantProfilesNeo4jSearchEnabled={ true }
        isParticipantProfilesNeo4jCreateEnabled={ true }
        isVariousArtistsWarningEnabled={ true }
        isCorrectionMode={ true }
        metaLanguageCode={ 'ja' }
        isUpdateArtistMode={ true }
        isAnalyticsMode={ true }
    />
</ApolloProvider>
```
