/** * WordPress dependencies */ import { _x } from '@safe-wordpress/i18n'; /** * External dependencies */ import clsx from 'clsx'; /** * Internal dependencies */ import { useActiveNetwork, useAvailableProfiles } from '../../../hooks'; import { SocialProfile } from './profile'; export type ProfilesProps = { readonly disabled?: boolean; }; export const Profiles = ( { disabled }: ProfilesProps ): JSX.Element => { const [ activeNetwork ] = useActiveNetwork(); const availableProfiles = useAvailableProfiles(); return ( <>
{ _x( 'Select one or more profiles:', 'text', 'nelio-content' ) }