Skip to content

Commit

Permalink
Add changeset for #991 (#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Métral authored Jun 22, 2021
1 parent 4c63423 commit b898410
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .changeset/fast-shoes-pretend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
'@sumup/circuit-ui': major
---

Switched to the new JSX transform with automatic runtime. You will need to update your Babel config to use Emotion's JSX runtime. For example, with Next.js and Emotion 10:

```json
{
"presets": [
[
"next/babel",
{
"preset-react": {
"runtime": "automatic",
"importSource": "@emotion/core"
}
}
]
],
"plugins": [["babel-plugin-emotion", { "cssPropOptimization": true }]]
}
```

0 comments on commit b898410

Please sign in to comment.