import React from 'react' import { __ } from '@wordpress/i18n' import { getSnippetType } from '../../../utils/snippets' import { useSnippetForm } from '../../../hooks/useSnippetForm' export const PriorityInput: React.FC = () => { const { snippet, setSnippet, isReadOnly } = useSnippetForm() return 'html' === getSnippetType(snippet) ? null :

setSnippet(previous => ({ ...previous, priority: parseInt(event.target.value, 10) }))} />

}