I've updated to 2.3.0. When loading from the server I get this warning:
...Warning: Unknown prop jsx on <style> tag. Remove this prop from the element. ...
My code:
import { styles } from '../constants'
const FooterStyle = () => (
<style jsx>
{`
footer {
background-color: ${styles.mainColor2};
text-align: center;
}
li {
color: white
}
`}
</style>
)
module.exports = FooterStyle
If if delete the jsx attribute and then put it back the warning does not appear anymore which makes me think that the issue is on the server-side only.
Thanks,
Paul