1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00
vault-frontend/src/components/main/Footer/index.tsx
Fedor Katurov ef261ca186 cleanup
2020-04-19 17:46:51 +07:00

13 lines
390 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React, { FC, memo } from 'react';
import styles from './styles.scss';
interface IProps {}
const Footer: FC<IProps> = memo(() => (
<div className={styles.footer}>
<div className={styles.slogan}>Уделяй больше времени тишине. Спасибо</div>
<div className={styles.copy}>2009 - {new Date().getFullYear()}</div>
</div>
));
export { Footer };