layout breaks as soon as material-table is imported onto the page,
See original GitHub issueAs soon as I import material-table
component onto the page, layout breaks. I suspect that it has something to do with the order in which core material-ui and material-table styles are loaded. Do we have any control over this?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:11
Top Results From Across the Web
Material UI material-table TablePagination issue. (React)
I encountered a somewhat related issue with TablePagination from material-ui, specifically on the onRowsPerPageChange props, for me, upgrading ...
Read more >material-table
material-table. React data table component that is based on material-ui. Get Started. GitHub stars. Actions. You can add one or multiple row based...
Read more >Migrating to v5: getting started - Material UI - MUI
This guide explains how and why to migrate from Material UI v4 to v5. Material UI v5 migration. Getting started you are here;...
Read more >Learn Material Table with React JS in 1 Hour - YouTube
This video is a complete Material table Crash Course for beginners. The video covers different table Topics and implementation in one single ...
Read more >Make a Great Table with Material UI Table - CopyCat Blog
Note: On v5, Material-UI changed its name and is available in NPM ... Step 2: Import the required material table react.js components here....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The solution that worked for me was using same version of
material-ui/*
modules as used by material-table.@jayarjo After struggling with this for a while, I now simply updated all the dependecies of my client to their latest version (
npm update
), which solved the problem. So maybe try to update everything related tomaterial-ui
as well asmaterial-table
.