You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: The macro imported from "./fixtures/non-wrapped.macro" must be wrapped in "createMacro" which you can get from "babel-plugin-macros". Please refer to the documentation to see how to do this properly: https://github.com/kentcdodds/babel-plugin-macros/blob/master/other/docs/author.md#writing-a-macro
206
214
207
215
`;
208
216
@@ -346,7 +354,8 @@ const Div = STYLED.div\`
346
354
↓ ↓ ↓ ↓ ↓ ↓
347
355
348
356
const red = "background-color: red;";
349
-
const Div = STYLED.div\`undefined\`;
357
+
const Div = STYLED.div\`composes: background-color: red;
358
+
color: blue;\`;
350
359
351
360
`;
352
361
@@ -365,7 +374,8 @@ const Div = styled.div\`
365
374
↓ ↓ ↓ ↓ ↓ ↓
366
375
367
376
const red = "background-color: red;";
368
-
const Div = styled.div\`undefined\`;
377
+
const Div = styled.div\`composes: background-color: red;
0 commit comments