fix typing errors

This commit is contained in:
Sebastian Sdorra
2019-10-19 17:15:53 +02:00
parent 6e7a08a3bb
commit 5debee5b49
11 changed files with 206 additions and 1210 deletions

View File

@@ -1,11 +1,11 @@
import * as React from 'react';
import binder from './binder';
import * as React from "react";
import binder from "./binder";
type Props = {
name: string;
renderAll?: boolean;
props?: object;
children?: React.Node;
children?: React.ReactNode;
};
/**