ant-design/site/theme/template/Home/Link.jsx

22 lines
685 B
React
Raw Normal View History

2016-03-03 17:23:08 +08:00
import React from 'react';
import ScrollLink from 'rc-scroll-anim/lib/ScrollLink';
import scrollScreen from 'rc-scroll-anim/lib/ScrollScreen';
export default class Link extends React.Component {
componentDidMount() {
2016-11-21 17:48:39 +08:00
scrollScreen.init();
2016-03-03 17:23:08 +08:00
}
render() {
return (
<div id="list">
<ScrollLink className="list-point" to="banner" toHash={false} />
<ScrollLink className="list-point" to="page1" toHash={false} />
<ScrollLink className="list-point" to="page2" toHash={false} />
<ScrollLink className="list-point" to="page3" toHash={false} />
<ScrollLink className="list-point" to="page4" toHash={false} />
2016-03-03 17:23:08 +08:00
</div>
);
}
}