当我尝试实例化Cannot create styled-component for component: undefined
时收到ServerStyleSheet
错误,但是如果没有它,它会很好地工作。
const Wrapper = styled.div`
color: blue;
`;
const sheet = new ServerStyleSheet();
const html = ReactDOMServer.renderToStaticMarkup(<Wrapper />);