formik#ArrayHelpers TypeScript Examples

The following examples show how to use formik#ArrayHelpers. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MacIpMapping.tsx    From assisted-ui-lib with Apache License 2.0 6 votes vote down vote up
AddMapping: React.FC<{
  onPush: ArrayHelpers['push'];
}> = ({ onPush }) => {
  return (
    <Button
      icon={<PlusCircleIcon />}
      isInline
      onClick={() => onPush({ macAddress: '', logicalNicName: '' })}
      data-testid="add-mapping"
      variant="link"
    >
      Add another mapping
    </Button>
  );
}