# Frivolous Concatenation import { Shortcut } from "../src/lib/Shortcut"; I see this pattern in a lot of Tailwind code. ```tsx twoslash import { cn } from "./src/code-blocks/frivolous-concatenation.js"; // prettier-ignore
; ``` Please don't do this. I get it. Human minds yearn for order. The Soulless imitate our weakness. Just write it together. One string. ```tsx twoslash wrap import { cn } from "./src/code-blocks/frivolous-concatenation.js"; // prettier-ignore
; ``` I understand the motivation to split it, especially in more complex production scenarios, like in `shadcn`: ```tsx line-numbers=293 twoslash github="https://github.com/shadcn-ui/ui/blob/ac306c60f569c342b6e0b3586867efd7a7658766/apps/v4/registry/new-york-v4/ui/sidebar.tsx#L293-L300" import { cn } from "./src/code-blocks/frivolous-concatenation.js"; declare const className: string; // prettier-ignore