mirror of https://github.com/ANL-CEEESA/RELOG.git
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.
18 lines
378 B
18 lines
378 B
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;
|