我正在使用CRA(create-react-app)创建网站。在此网站中,我使用React.createPortal将组件注入到iframe中,如下所示:
ReactDOM.createPortal(
<SomeComponent />,
this.iframeRef.current.contentDocument.body
);
但是样式显然没有传递到iframe中。像这样:https://codesandbox.io/s/kk05rl6kpv。
关于如何将样式表块移动到iframe中的任何想法?