DEV Community

Discussion on: Nextjs + typescript +styled-components

Collapse
 
ging3rmint profile image
Nate

This was super helpful but i keep getting JSX.element type error at

  return {
    ...initialProps,
    styles: (
      <>
        {initialProps.styles}
        {sheet.getStyleElement()}
      </>
    ),
  };
Enter fullscreen mode Exit fullscreen mode

is there any way to fix this?

Collapse
 
popchairat profile image
Chairat Ko

Chang from styles:(), to styles:[],

Thread Thread
 
nosovandrew profile image
Andrew Nosov

You've saved my time! Thanks!!!