import React from 'react' import { __ } from '@wordpress/i18n' import { useSnippetForm } from '../../../hooks/useSnippetForm' import { Tooltip } from '../../common/Tooltip' export const MultisiteSharingSettings: React.FC = () => { const { snippet, setSnippet, isReadOnly } = useSnippetForm() return (

{__('Share with Subsites', 'code-snippets')}

{__('Instead of running on every site, allow this snippet to be activated on individual sites on the network.', 'code-snippets')}
) }