mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
20 lines
501 B
JavaScript
20 lines
501 B
JavaScript
import React from 'react';
|
|
import Icon from 'components/Icon';
|
|
import moment from 'moment';
|
|
import intl from 'react-intl-universal';
|
|
|
|
export default function AuthCopyright() {
|
|
return (
|
|
<div class="auth-copyright">
|
|
<div class="auth-copyright__text">
|
|
{intl.get('all_rights_reserved', {
|
|
pre: moment().subtract(1, 'years').year(),
|
|
current: moment().get('year'),
|
|
})}
|
|
</div>
|
|
|
|
<Icon width={122} height={22} icon={'bigcapital'} />
|
|
</div>
|
|
);
|
|
}
|