File size: 185 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 | import * as React from 'react';
import type { AntAnchor } from './Anchor';
const AnchorContext = React.createContext<AntAnchor | undefined>(undefined);
export default AnchorContext;
|
1e92f2d | 1 2 3 4 5 6 7 8 | import * as React from 'react';
import type { AntAnchor } from './Anchor';
const AnchorContext = React.createContext<AntAnchor | undefined>(undefined);
export default AnchorContext;
|