Update DateFormField.tsx (#706)

passing props to constructor to prevent transpile time errors
This commit is contained in:
semopz 2018-12-08 16:56:39 +00:00 committed by Vesa Juvonen
parent 0265e4c7e6
commit b84a8e6771
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ export interface IDateFormFieldProps extends IDatePickerProps {
export default class DateFormField extends React.Component<IDateFormFieldProps> {
public constructor() {
super();
constructor(props) {
super(props);
}
public render() {