mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-07 16:18:51 -06:00
18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
import styles from "./Header.module.css";
|
|
|
|
const Header = (props) => {
|
|
return (
|
|
<div className={styles.HeaderBox}>
|
|
<div className={styles.HeaderContent}>
|
|
<h1>RELOG</h1>
|
|
<h2>{props.title}</h2>
|
|
<div style={{ float: "right", paddingTop: "5px" }}>
|
|
{props.children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Header;
|