Skip to content

Instantly share code, notes, and snippets.

View reatexpk's full-sized avatar

Dmitry Lebedev reatexpk

View GitHub Profile
@reatexpk
reatexpk / custom-props.tsx
Created April 3, 2019 14:32 — forked from iamtmrobinson/custom-props.tsx
Using custom props with a Redux form in Typescript
import * as React from 'react';
import {
Field as FormField,
InjectedFormProps,
reduxForm,
} from 'redux-form';
interface CustomProps {
customText: string;
}