mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 01:50:06 +00:00
9 lines
316 B
TypeScript
9 lines
316 B
TypeScript
import React from 'react';
|
|
|
|
import EntityRegistryV1 from '@app/entity/EntityRegistry';
|
|
import EntityRegistryV2 from '@app/entityV2/EntityRegistry';
|
|
|
|
export type EntityRegistry = EntityRegistryV1 | EntityRegistryV2;
|
|
|
|
export const EntityRegistryContext = React.createContext<EntityRegistryV1>(new EntityRegistryV1());
|