import React from "react";
import styles from "./index.less";
import { Anchor } from "antd";
const { Link } = Anchor;
class AnchorExample extends React.Component {
state = {
targetOffset: undefined
};
componentDidMount() {
this.setState({
targetOffset: window.innerHeight / 2
});
}
render() {
return (