| title | Invalid `styled-jsx` children |
|---|
You have passed invalid children to a <style jsx> tag.
Make sure to only pass one child to the <style jsx> tag, typically a template literal.
const Component = () => (
<div>
<p>Red paragraph</p>
<style jsx>{`
p {
color: red;
}
`}</style>
</div>
)Please see the links for more examples.