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
This package will cause issues with other packages as it makes use of similar component names.
For example the component <Row> will clash with the component <Row> from react-material-responsive-grid.
<Row>
react-material-responsive-grid
Also the <Table> component will clash with the default material-ui component also called <Table>
<Table>
If you want to use all of these in conjunction it will not work.
The text was updated successfully, but these errors were encountered:
Hi @vostramedia. Thanks for your feedback.
To avoid this problem, you should alias your imports. Like this :
import { Row as ReactResponsiveTableRow } from 'react-responsive-table';
And use it with your alias
<ReactResponsiveTableRow ... />
It would be a too important breaking change to change Row/Table and Cell to something else. I keep the issue openned to add it to the README.md
Sorry, something went wrong.
jtassin
No branches or pull requests
This package will cause issues with other packages as it makes use of similar component names.
For example the component
<Row>
will clash with the component<Row>
fromreact-material-responsive-grid
.Also the
<Table>
component will clash with the default material-ui component also called<Table>
If you want to use all of these in conjunction it will not work.
The text was updated successfully, but these errors were encountered: