rsnext/packages/next-swc/crates/styled_jsx/tests/fixture/number-after-placeholder/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

17 lines
No EOL
286 B
JavaScript

import Link from "next/link";
export default function IndexPage() {
return (
<div>
Hello World.{" "}
<Link href="/about">
<a>Abound</a>
</Link>
<style jsx>{`
a {
color: ${"#abcdef"}12;
}
`}</style>
</div>
);
}