hongbo-miao/hongbomiao.com

View on GitHub
web/src/App/components/Copyright.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import styles from './Copyright.module.css';

type Props = {
  year: number;
};

function Copyright(props: Props) {
  const { year } = props;
  const copyright = `© ${year} H.M.`;
  return <div className={styles.hmCopyright}>{copyright}</div>;
}

export default Copyright;