最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

material ui - Typography component is not picking up the theme from the ThemeProvider - Stack Overflow

matteradmin7PV0评论

In this simple example I'm importing Material UI from esm.sh.

I create a theme which seems to be ok when I console.log it.

However the Typography component is not picking up the theme from the ThemeProvider.

Does anyone know why?

CodeSandBox

      import * as React from ";;
      import { createRoot } from ";;

      import {
        createTheme,
        ThemeProvider,
      } from "/@mui/material/styles";
      import Typography from "/@mui/material/Typography";
      import CssBaseline from "/@mui/material/CssBaseline";

      const myTheme = createTheme({
        typography: {
          h1: {
            fontSize: "1rem",
            color: "green",
          },
        },
      });

      const App = () => {
        return (
          <div>
            <ThemeProvider theme={myTheme}>
              {console.log(myTheme)}
              <CssBaseline />
              <Typography variant="h1">heading 1</Typography>
            </ThemeProvider>
          </div>
        );
      };

      const root = createRoot(document.getElementById("root"));

      root.render(<App />);
Post a comment

comment list (0)

  1. No comments so far