hplib-classname
v1.0.1
Published
主要是在开发公共组件时,需要前缀区分的时候使用
Downloads
1
Readme
跟 classNames 组件类似,但是会为每个 className 自动增加前缀。
主要用在开发公共组件时,需要前缀区分的时候
import React from "react";
import { getPrefixClassNames } from "./prefix-classname";
const classNames = getPrefixClassNames("abc");
const App = () => {
return <div className={classNames("root")}>实际使用的className为:abc-root</div>;
};