mazeof-react
v1.1.3
Published
some goods for your react
Downloads
69
Readme
useClassPrefix
React hooks and other usefull stuff.
Hooks
useClassPrefix Function that will produce a string where every class is prefixed
usage
const pre = useClassPrefix ("my-prefix");
...
<div className={pre("clsA clsB content")}/>
result
<div class="my-prefix-clasA my-prefix-clasB my-prefix-content"/>