import { PropsWithChildren } from 'react' import { useAtomValue } from 'jotai' import { twMerge } from 'tailwind-merge' import { reduceTransparentAtom } from '@/helpers/atoms/Setting.atom' const CenterPanelContainer = ({ children }: PropsWithChildren) => { const reduceTransparent = useAtomValue(reduceTransparentAtom) return (
{children}
) } export default CenterPanelContainer