* Handled new url v2 type * Fixed refetch queries * wip * Ok delete but views bug * Fix lint --------- Co-authored-by: Charles Bochet <charles@twenty.com>
25 lines
621 B
TypeScript
25 lines
621 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
import { MetadataObjectScopeInternalContext } from './scope-internal-context/MetadataObjectScopeInternalContext';
|
|
|
|
type MetadataObjectScopeProps = {
|
|
children: ReactNode;
|
|
metadataObjectNamePlural: string;
|
|
};
|
|
|
|
export const MetadataObjectScope = ({
|
|
children,
|
|
metadataObjectNamePlural,
|
|
}: MetadataObjectScopeProps) => {
|
|
return (
|
|
<MetadataObjectScopeInternalContext.Provider
|
|
value={{
|
|
scopeId: metadataObjectNamePlural,
|
|
objectNamePlural: metadataObjectNamePlural,
|
|
}}
|
|
>
|
|
{children}
|
|
</MetadataObjectScopeInternalContext.Provider>
|
|
);
|
|
};
|