퍼블 업뎃
parent
d60de9a9e7
commit
8be3d8a5bf
|
|
@ -2,6 +2,7 @@ import React from 'react';
|
|||
import { Link } from 'react-router-dom';
|
||||
|
||||
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAbout';
|
||||
import URL from "../../constants/url";
|
||||
|
||||
function EgovAboutSite() {
|
||||
return (
|
||||
|
|
@ -10,8 +11,8 @@ function EgovAboutSite() {
|
|||
{/* <!-- Location --> */}
|
||||
<div className="location">
|
||||
<ul>
|
||||
<li><Link to="" className="home">Home</Link></li>
|
||||
<li><Link to="">센터 소개</Link></li>
|
||||
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
||||
<li><Link to={URL.ABOUT}>센터 소개</Link></li>
|
||||
<li>인사말</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,34 @@
|
|||
import React, { useState } from 'react';
|
||||
import {Link, useLocation, useNavigate} from 'react-router-dom';
|
||||
import * as EgovNet from 'api/egovFetch';
|
||||
import URL from "../../constants/url";
|
||||
|
||||
function Sitemap(){
|
||||
|
||||
|
||||
|
||||
return (
|
||||
<div>사이트맵</div>
|
||||
<div className="container">
|
||||
<div className="c_wrap">
|
||||
{/* <!-- Location --> */}
|
||||
<div className="location">
|
||||
<ul>
|
||||
<li><Link to={URL.MAIN} className="home" >Home</Link></li>
|
||||
<li><Link to={URL.ABOUT}>센터 소개</Link></li>
|
||||
<li>사이트맵</li>
|
||||
</ul>
|
||||
</div>
|
||||
{/* <!--// Location --> */}
|
||||
|
||||
<div className="layout">
|
||||
|
||||
<div className="contents" id="contents">
|
||||
{/* <!-- 본문 --> */}
|
||||
<h1 className="tit_3">사이트맵</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue