mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
import type { RosterReferenceBlockType } from '../../types'
|
|
import { createContext } from 'react'
|
|
|
|
export const RosterReferenceBlockContext = createContext<RosterReferenceBlockType | undefined>(
|
|
undefined,
|
|
)
|