All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.widgets.Form.fields.StandardField.FieldActions.tsx Maven / Gradle / Ivy

import React from 'react'

export interface Props {
    actions?: Array<{ label: string }>
}

/**
 * Компонент, содержащий экшены поля
 */
export const FieldActions = ({ actions = [] }: Props) => (
    
{actions.map((action, i) => ( // eslint-disable-next-line react/no-array-index-key ))}
) export default FieldActions




© 2015 - 2025 Weber Informatics LLC | Privacy Policy