rsnext/packages/next-swc/crates/styled_jsx/tests/fixture/multiple-jsx/input.js
Donny/강동윤 16f7084e7f
feat(next-swc): Update swc crates (#35996)
* Move

* Adjust

* publish = false

* Tree

* Move tests

* fixup

* Split `emotion`

* Split `styled_jsx`

* Split `styled_jsx`

* fmt

* `--fix`

* clippy

* Update crates

* fixup

* publish

* Bump

* Rename

* authors

* Update

* More update

* Oh

* Update test refs

* Update test refs

* Update again

* Fix
2022-04-11 11:59:16 +02:00

43 lines
591 B
JavaScript

const attrs = {
id: 'test'
}
const Test1 = () => (
<div>
<span {...attrs} data-test="test">test</span>
<Component />
<style jsx>{`
span {
color: red;
}
`}</style>
</div>
)
const Test2 = () => <span>test</span>
const Test3 = () => (
<div>
<span>test</span>
<style jsx>{`
span {
color: red;
}
`}</style>
</div>
)
export default class {
render () {
return (
<div>
<p>test</p>
<style jsx>{`
p {
color: red;
}
`}</style>
</div>
)
}
}