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

{ __('Instead of running on every site, allow this snippet to be activated on individual sites on the network.', 'code-snippets') }
setSnippet(previous => ({ ...previous, active: false, shared_network: event.target.checked }))} />
) }