8 lines
185 B
TypeScript
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;
|