mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-08 10:03:29 +08:00
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import * as React from 'react';
|
|
import { AntAnchor } from './Anchor';
|
|
|
|
const AnchorContext = React.createContext<AntAnchor>(null as any);
|
|
|
|
export default AnchorContext;
|