import React from 'react'; import { Link } from 'react-router'; import ScrollElement from 'rc-scroll-anim/lib/ScrollElement'; import TweenOne from 'rc-tween-one'; import { QueueAnim, Icon } from '../../../'; export default class Banner extends React.Component { typeFunc(a) { if (a.key === 'line') { return 'right'; } else if (a.key === 'button') { return 'bottom'; } return 'left'; } render() { return ( ); } }