Skip to content

Commit

Permalink
Fix mui import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyCaptainess committed May 30, 2022
1 parent 079b524 commit b8cdcd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -2,7 +2,7 @@
<img src="https://user-images.githubusercontent.com/19170080/34070522-e15d32e2-e235-11e7-8af5-fa704cdcad56.png" />
</div>

# MUI-Datatables - Datatables for Material-UI
# MUI-Datatables - Datatables for MUI (formerly Material-UI)

[![Build Status](https://travis-ci.org/gregnb/mui-datatables.svg?branch=master)](https://travis-ci.org/gregnb/mui-datatables)
[![NPM Downloads](https://img.shields.io/npm/dt/mui-datatables.svg?style=flat)](https://npmcharts.com/compare/mui-datatables?minimal=true)
Expand Down Expand Up @@ -364,7 +364,7 @@ Using Material-UI theme overrides will allow you to customize styling to your li
```js
import React from "react";
import MUIDataTable from "mui-datatables";
import { createTheme, ThemeProvider } from '@material-ui/core/styles';
import { createTheme, ThemeProvider } from '@mui/material/styles';
import { CacheProvider } from "@emotion/react";
import createCache from "@emotion/cache";

Expand Down Expand Up @@ -407,7 +407,7 @@ class BodyCellExample extends React.Component {
You can pass custom components to further customize the table:
```js
import React from "react";
import Chip from '@material-ui/core/Chip';
import Chip from '@mui/material/Chip';
import MUIDataTable, { TableFilterList } from "mui-datatables";

const CustomChip = ({ label, onDelete }) => {
Expand Down

0 comments on commit b8cdcd3

Please sign in to comment.