You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
416 B
15 lines
416 B
'use strict';
|
|
import React from 'react';
|
|
import moment from 'moment'
|
|
|
|
export default class Footer extends React.Component {
|
|
render () {
|
|
// const { } = this.props;
|
|
|
|
return (
|
|
<div style={{ textAlign: 'center', lineHeight: '32px' }}>
|
|
Copyright © {moment().year()} All Rights Reserved 版权所有· 江西飞尚科技有限公司
|
|
</div>
|
|
);
|
|
}
|
|
};
|