Skip to content

Deploy Fix for #2599 #2983

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/shared/components/tc-communities/Footer2/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@
*/

import React from 'react';

import moment from 'moment';
import TopcoderLogoGray from '../../../../assets/images/tc-communities/logo_topcoder_gray.svg';
import './style.scss';


export default function Footer2() {
return (
<div styleName="footer">
<div styleName="content">
<TopcoderLogoGray />
<span styleName="copyright">
&copy; Topcoder, 2017
&copy; Topcoder, {moment().year()}
</span>
<div styleName="right">
<a
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import moment from 'moment';
import React from 'react';
import PT from 'prop-types';
import { themr } from 'react-css-super-themr';
Expand All @@ -8,7 +9,7 @@ function Footer({ theme }) {
return (
<footer className={theme.footer}>
<div className={theme.footerText}>
&copy; Copyright Topcoder Ltd 2017
&copy; Copyright Topcoder Ltd {moment().year()}
</div>
</footer>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import moment from 'moment';
import React from 'react';
import PT from 'prop-types';
import { themr } from 'react-css-super-themr';
Expand All @@ -8,7 +9,7 @@ function Footer({ theme }) {
return (
<footer className={theme.footer}>
<div className={theme.footerText}>
&copy; Copyright Wipro Ltd 2017
&copy; Copyright Wipro Ltd {moment().year()}
</div>
</footer>
);
Expand Down