mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-05 23:38:52 -06:00
19 lines
492 B
TypeScript
19 lines
492 B
TypeScript
/*
|
|
* RELOG: Supply Chain Analysis and Optimization
|
|
* Copyright (C) 2020-2025, UChicago Argonne, LLC. All rights reserved.
|
|
* Released under the modified BSD license. See COPYING.md for more details.
|
|
*/
|
|
|
|
import styles from "./Footer.module.css";
|
|
|
|
function Footer() {
|
|
return (
|
|
<div className={styles.Footer}>
|
|
RELOG: Supply Chain Analysis and Optimization <br />
|
|
Copyright (C) 2020-2025, UChicago Argonne, LLC. All rights reserved.
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Footer;
|