# give/4.17.0/src/EventTickets/resources/admin/components/EventDetailsPage/EventSection/EventSectionRowActions.tsx

GiveWP – Donation Plugin and Fundraising Platform, version 4.17.0. 14 lines.

- Page: https://pluginprobe.com/plugins/give/4.17.0/code/src/EventTickets/resources/admin/components/EventDetailsPage/EventSection/EventSectionRowActions.tsx
- Raw: https://pluginprobe.com/plugins/give/4.17.0/raw/src/EventTickets/resources/admin/components/EventDetailsPage/EventSection/EventSectionRowActions.tsx
- Modified: 2024-03-13T21:54:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.17.0/code/src/EventTickets/resources/admin/components/EventDetailsPage/EventSection/EventSectionRowActions.tsx#L10-L20`.

```tsx
import {__} from '@wordpress/i18n';
import RowAction from '@givewp/components/ListTable/RowAction';

/**
 * @since 3.6.0
 */
export function EventSectionRowActions({event, openEditModal}) {
    return () => {
        return (
                <RowAction onClick={openEditModal} displayText={__('Edit', 'give')} />
        );
    };
}

```
