mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
22 lines
685 B
JavaScript
22 lines
685 B
JavaScript
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() {
|
|
scrollScreen.init();
|
|
}
|
|
|
|
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} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|