NoticePage.js 271 Bytes
Newer Older
Ha YeaJin's avatar
pages    
Ha YeaJin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
import React, { useState, useEffect } from 'react';
import Menu from '../Components/Menu';

function Notice() {
    return (
        <div>
            <Menu />
            <div className="container">notice
            </div>
        </div>
    )
}

Lee Jin Ju's avatar
Lee Jin Ju committed
14
export default Notice;