kcscDev/egovframe-template-simple-r.../src/pages/admin/config/StandardCodeMgt.jsx

41 lines
1.4 KiB
React
Raw Normal View History

2024-02-13 00:14:09 +00:00
import React, { useState, useEffect, useCallback } from 'react';
import { Link, useLocation } from 'react-router-dom';
2024-02-13 00:14:09 +00:00
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">
2024-02-13 00:14:09 +00:00
<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 StandardCodeMgt;