AgGrid React Material UI - reactjs

Any good examples out there of using AgGrid with React Material UI. Especially around creating custom themes. The examples on the AgGrid site are around css / scss not styled components the preferred approach with React Material UI.

Although it might not be exactly what you are looking for. Try searching for
component types and custom renderers as it contributes to customizing your ag-grid look

Related

is there a fun mui sample app which leverages all mui components?

Is there a fun MUI sample app which leverages all mui components? Obviously examples for all MUI components are provided in the MUI docs but it would be great to see all of the sample components intermingled together in a sample app to provide additional context and usage ideas for those who haven't used the MUI design system very extensively.

How to use MUI inside CMS library?

We are currently using React Material UI for a big e-commerce site that requires a CMS.
The problem is that we need to give the elements in the CMS (that are configurable as pure HTML containers) the ability to use the same component animation and style as what we used in the MUI configuration in react.
Is there any way we can achieve this?
In other words, how can we create a html library from React Material UI?

Custom Design in Material UI

the landing page of Material UI has slick design (both layout and components). I wonder if I can use this design instead of default Material Design. I couldn't find any information about this design in the docs.
I believe you are looking for the source code of mui documentation website. Here's the link
If you are looking for theme specifically then this link should help you.
If you mean their home page, it's actually designed by Material UI, you can check this by seeing the source page.
Mostly Material UI components in the home page are designed using makeStyle so they are not in the default style.
https://mui.com/styles/api/#heading-makestyles-styles-options-hook

Integration Material-UI with third-party react components

Is there any recomended way how to style third-party components such as react-paginate
with Material-UI primitives (bars, buttons)?
Is it possible at all?
One of the best ways to do this today is use styled-components. These allow you to pass in any 3rd party component and style them to your needs. Here is any example of how to do this with antd. Would be similar for you, except using Material UI components.

How to drag-n-drop TableHeaderColumn from material UI with react-dnd?

How to apply drag-n-drop functionality from react-dnd library to TableHeaderColumn component from material ui
The problem is react-dnd does not support custom tags and suggests to wrap TableHeaderColumn in div but material ui does not allow to wrap table component in any tag :(
I can't find any examples by this theme
And the answer is - there are no way to do it with react-dnd, at least for this moment.
So I've ended up using react-sortable-hoc which works as expected in pair with material UI table elements.

Resources