Header.js 569 Bytes
Newer Older
1
import { Link } from "react-router-dom";
Kim, Chaerin's avatar
Kim, Chaerin committed
2
3
4
const Header = () => {
  return (
    <div>
5
6
7
8
9
10
11
12
13
14
15
16
17
      <form
        style={{ backgroundColor: "#FCF4FF" }}
        className="flex-column align-items-center justify-content-center p-2"
      >
        <div className="d-flex justify-content-center">
          <Link to="/user">
            <img src="/BORA.png" style={{ width: "160px" }} />
          </Link>
        </div>
      </form>
      <div
        style={{ backgroundColor: "#262626", width: "auto", height: "2px" }}
      ></div>
Kim, Chaerin's avatar
Kim, Chaerin committed
18
19
20
21
22
    </div>
  );
};

export default Header;