next.js/test/e2e/styled-jsx-dynamic/components/Footer.js
Footer.js14 lines230 B
export default function Footer({ color }) {
  return (
    <footer>
      <style jsx>{`
        footer {
          color: ${color};
          padding: 1rem;
        }
      `}</style>
      <span>Footer</span>
    </footer>
  )
}
Quest for Codev2.0.0
/
SIGN IN