import { Button, } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; type Props = { value: string; items: { label: string; title: string; value: string }[]; onChange: (value: string) => void; } export default function TextTransform({ value, items, onChange }: Props) { return (
{__('Text Transform', 'apura')}
{items.map((item) => { return (
); })}
); }