UNPKG

@zohodesk/components

Version:

In this Package, we Provide Some Basic Components to Build Web App

14 lines 306 B
import { useZIndex } from "../../Provider/ZindexProvider"; export default function cssJSLogic(props) { const { isActive, needAutoZindex } = props; const zIndex = useZIndex(); const zIndexStyle = isActive && needAutoZindex ? { zIndex: zIndex() } : {}; return { zIndexStyle }; }