Repository URL to install this package:
|
Version:
2.7.3 ▾
|
import React from 'react';
import { AnchorProps } from './typings';
/**
* @description this makes the link go to `main`
* @todo this file is unused, but should be used...
*/
declare class Anchor extends React.PureComponent<AnchorProps> {
static defaultProps: {
identifier: string;
};
render(): JSX.Element;
}
export { Anchor };
export default Anchor;