rsnext/test/integration/basepath/pages/hmr/style.js

18 lines
327 B
JavaScript
Raw Normal View History

import React from 'react'
export default () => {
return (
<React.Fragment>
<div className="hmr-style-page">
<p>
This is the style page.
<style jsx>{`
p {
font-size: 100px;
}
`}</style>
</p>
</div>
</React.Fragment>
)
}