We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In version 1.4.1 we imported the WithWidthProps like this:
1.4.1
import withWidth, { WithWidthProps } from '@material-ui/core/withWidth';
And the Components extends the WithWidthProps this way:
export namespace App { export interface Props extends RouteComponentProps<void>, WithStyles<typeof styles>, WithWidthProps { todoList: Todo[]; } } const history = createBrowserHistory(); class App extends React.Component<App.Props, App.State> {
The import for WithWidthProps is not working anymore in version 3.1.x. withWidth still able to import.
WithWidthProps
3.1.x
withWidth
The text was updated successfully, but these errors were encountered:
This was renamed from WithWidthProps to WithWidth in 1.5.0 (#12492).
WithWidth
Sorry, something went wrong.
Upps. Thanks for your fast answer.
No branches or pull requests
Expected Behavior
In version
1.4.1
we imported the WithWidthProps like this:And the Components extends the WithWidthProps this way:
Current Behavior
The import for
WithWidthProps
is not working anymore in version3.1.x
.withWidth
still able to import.Your Environment
The text was updated successfully, but these errors were encountered: