We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8462814 commit 11f13e6Copy full SHA for 11f13e6
1 file changed
app/index.tsx
@@ -1,6 +1,6 @@
1
import React from 'react';
2
// import { adaptV4Theme } from '@mui/styles';
3
-import { createTheme, adaptV4Theme } from '@mui/material/styles'
+import { createTheme } from '@mui/material/styles'
4
import ReactDOM from 'react-dom';
5
6
// REACT 18 Syntax below
@@ -12,12 +12,12 @@ import App from './App';
12
import WindowBar from './components/WindowBar/WindowBar';
13
14
15
-const theme = createTheme(adaptV4Theme({
+const theme = createTheme({
16
// v4 theme
17
typography: {
18
fontFamily: ['Roboto', 'sans-serif'].join(','),
19
},
20
-}));
+});
21
22
// React 17 Syntax below
23
ReactDOM.render(
0 commit comments