11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
import { createContext } from 'react';
|
|
|
|
type TimelineActivityContextValue = {
|
|
labelIdentifierValue: string;
|
|
};
|
|
|
|
export const TimelineActivityContext =
|
|
createContext<TimelineActivityContextValue>({
|
|
labelIdentifierValue: '',
|
|
});
|