Header.js 436 Bytes
Newer Older
Kim, Chaerin's avatar
Kim, Chaerin committed
1
2
const Header = () => {
  return (
우지원's avatar
우지원 committed
3
4
5
6
7
8
9
    <div><form style={{ backgroundColor: "#FCF4FF" }} className="flex-column align-items-center justify-content-center p-2" >
      <div className="d-flex justify-content-center">
        <img src="/BORA.png" style={{ width: "160px" }} />
      </div>
    </form>
      <div style={{ backgroundColor: "#262626", width: "auto", height: "2px" }} >
      </div>
Kim, Chaerin's avatar
Kim, Chaerin committed
10
11
12
13
14
    </div>
  );
};

export default Header;