Attributify JSX transformer
Ondersteun valueless attributify in JSX/TSX: @unocss/transformer-attributify-jsx.
Presentatie
jsx
export function Component() {
return (
<div text-red text-center text-5xl animate-bounce>
unocss
</div>
)
}Zal worden getransformeerd naar:
jsx
export function Component() {
return (
<div text-red="" text-center="" text-5xl="" animate-bounce="">
unocss
</div>
)
}Zonder deze transformer, behandelt JSX valueless attributen als boolean attributen.
jsx
export function Component() {
return (
<div text-red={true} text-center={true} text-5xl={true} animate-bounce={true}>
unocss
</div>
)
}Installatie
bash
pnpm add -D @unocss/transformer-attributify-jsxbash
yarn add -D @unocss/transformer-attributify-jsx