All Downloads are FREE. Search and download functionalities are using the official Maven repository.

core.datasource.ArrayField.ArrayFieldProvider.tsx Maven / Gradle / Ivy

There is a newer version: 7.28.3
Show newest version
import React, { ReactNode, useContext } from 'react'

import { DepthContext } from './Context'

type ArrayFieldProviderProps = {
    children: ReactNode
}

/**
 * Компонент-обёртка над мультисетатами для контроля глубины вложенности
 */
export function ArrayFieldProvider({ children }: ArrayFieldProviderProps) {
    const currentDepth = useContext(DepthContext)

    return (
        
            {children}
        
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy