From 8be3d8a5bf66aa5e164fc1d043c66f93d5112b2c Mon Sep 17 00:00:00 2001 From: "Lim\\jun" Date: Mon, 17 Jun 2024 14:07:38 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8D=BC=EB=B8=94=20=EC=97=85=EB=8E=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/pages/about/EgovAboutSite.jsx | 5 ++-- .../src/pages/about/EgovAboutSitemap.jsx | 23 ++++++++++++++++++- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSite.jsx b/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSite.jsx index 25744e8..5797faf 100644 --- a/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSite.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSite.jsx @@ -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() { {/* */}
diff --git a/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSitemap.jsx b/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSitemap.jsx index 349d697..6f29f4f 100644 --- a/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSitemap.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/about/EgovAboutSitemap.jsx @@ -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 ( -
사이트맵
+
+
+ {/* */} +
+
    +
  • Home
  • +
  • 센터 소개
  • +
  • 사이트맵
  • +
+
+ {/* */} + +
+ +
+ {/* */} +

사이트맵

+
+
+
+
); }