import { useNavTransparent } from './useNavTransparent'; import './index.scss'; import clsx from 'clsx'; function HomeBackground({ className, ...otherProps }: React.HTMLAttributes) { const styleDom = useNavTransparent(); return ( <> {styleDom}
); } export { HomeBackground };