nicecode-v2/packages/meta/src/anchor/context.ts

8 lines
185 B
TypeScript

import * as React from 'react';
import type { AntAnchor } from './Anchor';
const AnchorContext = React.createContext<AntAnchor | undefined>(undefined);
export default AnchorContext;