Files
med-notes/.pnpm-store/v10/files/1e/d72d8cf96068a8a5015d7d33cf570b52743ea95188ef64d359e77a30006e0b57edc0a0de87d3a51c50e6dad5426235aed6eddd8b6441084d7bff7f1e086148
2025-05-09 05:30:08 +02:00

9 lines
320 B
Plaintext

import * as React from 'react'
export const matchContext = React.createContext<string | undefined>(undefined)
// N.B. this only exists so we can conditionally call useContext on it when we are not interested in the nearest match
export const dummyMatchContext = React.createContext<string | undefined>(
undefined,
)