mirror of
https://github.com/langgenius/dify.git
synced 2026-07-25 05:28:35 +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,
|
|
)
|