import {__} from '@wordpress/i18n'; import SpotLight from '../SpotLight'; import VideoPlayer from '../VideoPlayer'; import './styles.scss'; type RightContentSectionProps = { assets: string; }; /** * @since 3.6.0 Replace custom fields spotlight with event tickets * @since 3.0.0 */ export default function RightContentSection({assets}: RightContentSectionProps) { return (

{__('Spotlight on awesome features', 'give')}

{__('Event tickets', 'give')} BETA } description={__( 'Easily connect your events to your donation form. To enable this go to Settings > General > Beta Features and enable event tickets', 'give' )} >
); }