# useClassPrefix
React hooks and other usefull stuff.

## Hooks
**useClassPrefix**
Function that will produce a string where every class is prefixed

usage
```tsx
const pre = useClassPrefix ("my-prefix");
...
<div className={pre("clsA clsB content")}/>
```

result
```html
<div class="my-prefix-clasA my-prefix-clasB my-prefix-content"/>
```
