Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
322 Bytes
import { cloneElement } from 'react'
// type ConditionalWrapperProps = {
// children: ReactNode
// condition: boolean
// wrapper: ReactElement
// }
export const ConditionalWrapper = ({ children, condition, wrapper }) => {
if (!condition) return children
return cloneElement(wrapper, {}, children)
}