mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
b3a37b7ca9
* fix: fix * fix: fix * fix: revert * fix: fix * test: fix test case * test: fix * test: fix * fix: fix * fix: fix
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import * as React from 'react';
|
|
import type { AntAnchor } from './Anchor';
|
|
|
|
const AnchorContext = React.createContext<AntAnchor | undefined>(undefined);
|
|
|
|
export default AnchorContext;
|