기본 포멧 업뎃

thkim
Lim\jun 2024-02-13 09:14:09 +09:00
parent 60521e4995
commit a2fcdfe569
2 changed files with 62 additions and 6 deletions

View File

@ -1,13 +1,41 @@
import React from 'react';
import React, { useState, useEffect, useCallback } from 'react';
import { Link, useLocation } from 'react-router-dom';
import * as EgovNet from 'api/egovFetch';
import URL from 'constants/url';
function AboutSiteMgt(props) {
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin';
function StandardCodeMgt(props) {
return (
<div className="container">
AboutSiteMgt
<div className="c_wrap">
{/* <!-- Location --> */}
<div className="location">
<ul>
<li><Link to={URL.MAIN} className="home">Home</Link></li>
<li><Link to={URL.ADMIN} >사이트관리</Link></li>
<li>환경설정</li>
<li>관련사이트 관리</li>
</ul>
</div>
{/* <!--// Location --> */}
<div className="layout">
{/* <!-- Navigation --> */}
<EgovLeftNav></EgovLeftNav>
{/* <!--// Navigation --> */}
<div className="contents NOTICE_LIST" id="contents">
<div className="top_tit">
<h1 className="tit_1">관련사이트 관리</h1>
</div>
</div>
</div>
</div>
</div>
);
}
export default AboutSiteMgt;
export default StandardCodeMgt;

View File

@ -1,11 +1,39 @@
import React from 'react';
import React, { useState, useEffect, useCallback } from 'react';
import { Link, useLocation } from 'react-router-dom';
import * as EgovNet from 'api/egovFetch';
import URL from 'constants/url';
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin';
function StandardCodeMgt(props) {
return (
<div className="container">
StandardCodeMgt
<div className="c_wrap">
{/* <!-- Location --> */}
<div className="location">
<ul>
<li><Link to={URL.MAIN} className="home">Home</Link></li>
<li><Link to={URL.ADMIN} >사이트관리</Link></li>
<li>환경설정</li>
<li>건설기준코드 관리</li>
</ul>
</div>
{/* <!--// Location --> */}
<div className="layout">
{/* <!-- Navigation --> */}
<EgovLeftNav></EgovLeftNav>
{/* <!--// Navigation --> */}
<div className="contents NOTICE_LIST" id="contents">
<div className="top_tit">
<h1 className="tit_1">건설기준코드 관리</h1>
</div>
</div>
</div>
</div>
</div>
);
}