Replace React.Component<(.*), (any|void|\{\}|null)> by React.Component<$1>

+ many manual adjustments
This commit is contained in:
Tanguy Krotoff
2017-06-19 11:59:46 +02:00
parent 1745cc3b4c
commit ea9de8a518
258 changed files with 828 additions and 828 deletions

View File

@@ -7,7 +7,7 @@ interface TableProps extends CSSModules.InjectedCSSModuleProps {
}
class Table extends React.Component<TableProps, {}> {
class Table extends React.Component<TableProps> {
render () {
const { styles } = this.props;
@@ -29,7 +29,7 @@ interface TableDecoratedProps extends CSSModules.InjectedCSSModuleProps {
}
@CSSModules(styles)
class TableDecorated extends React.Component<TableDecoratedProps, {}> {
class TableDecorated extends React.Component<TableDecoratedProps> {
render () {
const { styles } = this.props;
@@ -47,7 +47,7 @@ interface TableProps extends CSSModules.InjectedCSSModuleProps {
}
class Svg extends React.Component<TableProps, {}> {
class Svg extends React.Component<TableProps> {
render () {
const { styles } = this.props;