mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
|
|
import { createContext } from 'react';
|
||
|
|
|
||
|
|
import { IResourceAttributeProps } from './types';
|
||
|
|
|
||
|
|
export const ResourceContext = createContext<IResourceAttributeProps>(
|
||
|
|
{} as IResourceAttributeProps,
|
||
|
|
);
|