Reputation: 1791
Building a React.js dashboard (data tables + graphs) and styling this using material-ui. If I use the pre-release version right now, will I have make more changes when the v1 of material-ui is released?
Upvotes: 1
Views: 399
Reputation: 7400
I'd recommend migrating as soon as you can. It is not trivial, but you pay that price once to use the new features (like the new approach to style, CSS API, built in grid system/breakpoints, etc). Any changes made to v1 should be easier to deal with as releases roll out. Generally, the release notes identify all of the changes, highlighting the breaking changes (if any were merged).
Check the documentation and make sure all of the components you're using have been implemented. If you find that v1 hasn't implemented a component you depend on, you have a few options:
Upvotes: 3