import ContentSnippet from '../ContentSnippet'
import { DOCS_CONTENT } from '../ProjectAPIDocs.constants'
import type { ContentProps } from './Content.types'
import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
export const UserManagement = ({ language, apikey, endpoint }: ContentProps) => {
const { authenticationSignInProviders } = useIsFeatureEnabled([
'authentication:sign_in_providers',
])
return (
<>
{authenticationSignInProviders && (
)}
>
)
}