import React, { Component } from 'react'; import {Link} from 'react-router-dom' const map={"blue":"blueFull","greyBack":"greyBack","grey":"greyWidthFixed","green":"greenBack",'greyLine':"greyLine",'orangeLine':"orangeLine", 'colorBlue': 'colorBlue', // 蓝字白底 } class ActionBtn extends Component { constructor(props) { super(props); } render() { let{to, children, style, className, ...others}=this.props return( { to==undefined ? {children} : {this.props.children} } ) } } export default ActionBtn;