我在尝试使用Portal导入时遇到的MUI错误。

huangapple go评论81阅读模式
英文:

MUI Error I am getting while trying to import with Portal

问题

我从 mui 中导入 Portal 时遇到了错误。
import {Portal} from @mui/base/Portal;

import {Portal} from @mui/base/Portal;
在这一行出现了错误。
我认为 mui 更新了 mui/base 的新版本。
请提供一个稳定的解决方案来帮助我。

英文:

I am getting error while importing Portal from mui
import {Portal} from @mui/base/Portal;

import {Portal} from @mui/base/Portal;
getting error in this line
I think mui updated new version of mui/base
plse help by giving a robust solution

答案1

得分: 1

请检查 MUI 的最新发布。[MUI 最新发布]: https://github.com/mui/material-ui/releases

尝试更改下面的代码行

import {Portal} from @mui/base/Portal; 改为 import {Portal} from @mui/base;

希望这能帮到你。

英文:

Please checkout for any releases from MUI. [MUI latest releases]: https://github.com/mui/material-ui/releases

Try changing the below line

import {Portal} from @mui/base/Portal; to import {Portal} from @mui/base;

Hope this helps.

huangapple
  • 本文由 发表于 2023年8月8日 21:45:37
  • 转载请务必保留本文链接:https://go.coder-hub.com/76860163.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定