rsnext/test/integration/hydrate-then-render/pages/other.js
2020-11-23 15:04:12 +00:00

11 lines
154 B
JavaScript

const Other = () => {
return (
<div>
<h1>Foo!</h1>
<h2>bar!</h2>
<div id="on-other"></div>
</div>
)
}
export default Other