mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
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;
|