import PropTypes from 'prop-types' import React from 'react' const Footer = ({ children }) => (
© 1999-{new Date().getFullYear()} Aliyun.com
start.aliyun.com is powered by
Aliyun.com
{children && (
{children}
)}
) Footer.defaultProps = { children: null, } Footer.propTypes = { children: PropTypes.node, } export default Footer