diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/boards/Keywords.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/boards/Keywords.jsx index 1810ee5..4968282 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/boards/Keywords.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/boards/Keywords.jsx @@ -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 Keywords(props) { +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; + +function StandardCodeMgt(props) { return (
- Keywords +
+ {/* */} +
+
    +
  • Home
  • +
  • 사이트관리
  • +
  • 게시판현황
  • +
  • 키워드 관리
  • +
+
+ {/* */} + +
+ {/* */} + + {/* */} + +
+
+

키워드 관리

+
+
+
+
); } -export default Keywords; \ No newline at end of file +export default StandardCodeMgt; \ No newline at end of file diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/boards/Posts.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/boards/Posts.jsx index 9584e57..74004a3 100644 --- a/egovframe-template-simple-react-contribution/src/pages/admin/boards/Posts.jsx +++ b/egovframe-template-simple-react-contribution/src/pages/admin/boards/Posts.jsx @@ -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 Posts(props) { +import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin'; + +function StandardCodeMgt(props) { return (
- Posts +
+ {/* */} +
+
    +
  • Home
  • +
  • 사이트관리
  • +
  • 게시판현황
  • +
  • 게시물 관리
  • +
+
+ {/* */} + +
+ {/* */} + + {/* */} + +
+
+

게시물 관리

+
+
+
+
); } -export default Posts; \ No newline at end of file +export default StandardCodeMgt; \ No newline at end of file