export default function ReactCusdisWrapper({ articleId, title }: Props) {
const { themeName, isDarkMode } = useTheme();
return (
<>
<div id="react-cusdis-wrapper">
<ReactCusdis
attrs={{
host: "https://......",
appId: "......",
pageId: "/.../" + ...,
pageTitle: title,
pageUrl: "https://.../" + ...,
theme: themeName,
}}
/>
</div>
</>
);
}
而且在初始化只有再修改 theme,就文字颜色也没有变化。