import * as React from "react"; import * as ReactDOM from "react-dom"; import * as chroma from "chroma-js"; import { css } from "linaria"; const color: string = (() => { /** * Uncomment this to inspect how Chroma was imported. */ //if (typeof chroma !== "function") { //throw new Error( //`chroma should be a function, instead imported as ${chroma}` //); //} return chroma("red").darken(0.3).css(); })(); let appStyle = "dummy-class-if-comment-out-linaria"; /** * Comment or uncomment this block to toggle the issue. */ appStyle = css` min-width: 500px; min-height: 500px; background: ${color}; `; function App() { const otherStyles: React.CSSProperties = { minWidth: 500, minHeight: 500, padding: "1em", border: `1px solid ${color}`, }; return (
React app mounted. If the background is {color} (red), then Linaria is working.
); } const root = document.querySelector("#react-app"); ReactDOM.render(, root);