2020-04-29 22:06:04 +08:00
|
|
|
import * as React from 'react';
|
2022-05-07 14:31:54 +08:00
|
|
|
import type { AntAnchor } from './Anchor';
|
2020-04-29 20:22:16 +08:00
|
|
|
|
|
|
|
const AnchorContext = React.createContext<AntAnchor>(null as any);
|
|
|
|
|
|
|
|
export default AnchorContext;
|