퍼블 업뎃
parent
d60de9a9e7
commit
8be3d8a5bf
|
|
@ -2,6 +2,7 @@ import React from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAbout';
|
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAbout';
|
||||||
|
import URL from "../../constants/url";
|
||||||
|
|
||||||
function EgovAboutSite() {
|
function EgovAboutSite() {
|
||||||
return (
|
return (
|
||||||
|
|
@ -10,8 +11,8 @@ function EgovAboutSite() {
|
||||||
{/* <!-- Location --> */}
|
{/* <!-- Location --> */}
|
||||||
<div className="location">
|
<div className="location">
|
||||||
<ul>
|
<ul>
|
||||||
<li><Link to="" className="home">Home</Link></li>
|
<li><Link to={URL.MAIN} className="home">Home</Link></li>
|
||||||
<li><Link to="">센터 소개</Link></li>
|
<li><Link to={URL.ABOUT}>센터 소개</Link></li>
|
||||||
<li>인사말</li>
|
<li>인사말</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,34 @@
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import {Link, useLocation, useNavigate} from 'react-router-dom';
|
import {Link, useLocation, useNavigate} from 'react-router-dom';
|
||||||
import * as EgovNet from 'api/egovFetch';
|
import * as EgovNet from 'api/egovFetch';
|
||||||
|
import URL from "../../constants/url";
|
||||||
|
|
||||||
function Sitemap(){
|
function Sitemap(){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return (
|
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