MCPcopy Create free account
hub / github.com/editablejs/editable / DirectionProviderProps

Interface DirectionProviderProps

packages/ui/src/direction.tsx:10–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8 * -----------------------------------------------------------------------------------------------*/
9
10interface DirectionProviderProps {
11 children?: React.ReactNode
12 dir: Direction
13}
14const DirectionProvider: React.FC<DirectionProviderProps> = props => {
15 const { dir, children } = props
16 return <DirectionContext.Provider value={dir}>{children}</DirectionContext.Provider>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…