Type '{}' is not assignable to type 'Readonly<Props>'.
Property 'props' is missing in type '{}'
?interface Props {
props: Object;
}
class App extends React.Component<Props> {
constructor(props: Props) {
super(props);
}
public render() {
return (
<AppWrap>
<Block>Block</Block>
</AppWrap>
);
}
}
constructor(props: Props) {
super(props);
}
<App props={} />