next.js/test/e2e/styled-jsx-dynamic/components/DynamicStyled.js
DynamicStyled.js13 lines203 B
export default function DynamicStyled({ color }) {
  return (
    <div>
      <style jsx>{`
        p {
          color: ${color};
        }
      `}</style>
      <p>dynamic styled</p>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN