Skip to content

Instantly share code, notes, and snippets.

View kunokdev's full-sized avatar
🦾
Using GitHub Copilot

kunokdev

🦾
Using GitHub Copilot
View GitHub Profile
@iamtmrobinson
iamtmrobinson / custom-props.tsx
Created January 8, 2018 14:49
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;
}
@puzzfuzz
puzzfuzz / .eslintrc
Created November 5, 2015 16:54
Minimal .eslintrc for working with ES6 and React
{
"env": {
"es6": true,
"browser": true
},
"ecmaFeatures": {
"modules": true,
"jsx": true
}
}