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.
RELOG/relog-web/src/common/Footer.js

16 lines
322 B

import styles from "./Footer.module.css";
const Footer = () => {
return (
<div className={styles.Footer}>
<p>RELOG: Reverse Logistics Optimization</p>
<p>
Copyright &copy; 2020&mdash;2022, UChicago Argonne, LLC. All Rights
Reserved.
</p>
</div>
);
};
export default Footer;