diff --git a/src/components/DataManage/CurrencyItemLogContent.js b/src/components/DataManage/CurrencyItemLogContent.js
index de149fe..22f9f9f 100644
--- a/src/components/DataManage/CurrencyItemLogContent.js
+++ b/src/components/DataManage/CurrencyItemLogContent.js
@@ -22,6 +22,7 @@ import {
import ExcelExportButton from '../common/button/ExcelExportButton';
import CircularProgress from '../common/CircularProgress';
import { GameCurrencyItemLogExport } from '../../apis';
+import { AnimatedPageWrapper } from '../common/Layout';
const CurrencyItemLogContent = ({ active }) => {
const { t } = useTranslation();
@@ -85,7 +86,7 @@ const CurrencyItemLogContent = ({ active }) => {
if(!active) return null;
return (
- <>
+
{
>
}
- >
+
);
};
export default CurrencyItemLogContent;
\ No newline at end of file
diff --git a/src/components/DataManage/CurrencyLogContent.js b/src/components/DataManage/CurrencyLogContent.js
index b5ab026..c9c9a7a 100644
--- a/src/components/DataManage/CurrencyLogContent.js
+++ b/src/components/DataManage/CurrencyLogContent.js
@@ -21,6 +21,7 @@ import {
} from '../../assets/data/adminConstants';
import ExcelExportButton from '../common/button/ExcelExportButton';
import CircularProgress from '../common/CircularProgress';
+import { AnimatedPageWrapper } from '../common/Layout';
const CurrencyLogContent = ({ active }) => {
const { t } = useTranslation();
@@ -83,7 +84,7 @@ const CurrencyLogContent = ({ active }) => {
if(!active) return null;
return (
- <>
+
{
>
}
- >
+
);
};
export default CurrencyLogContent;
\ No newline at end of file
diff --git a/src/components/DataManage/ItemLogContent.js b/src/components/DataManage/ItemLogContent.js
index 677f9d7..32c6f6c 100644
--- a/src/components/DataManage/ItemLogContent.js
+++ b/src/components/DataManage/ItemLogContent.js
@@ -22,6 +22,7 @@ import {
import ExcelExportButton from '../common/button/ExcelExportButton';
import CircularProgress from '../common/CircularProgress';
import { countDeltaType, itemTypeLarge } from '../../assets/data/options';
+import { AnimatedPageWrapper } from '../common/Layout';
const CurrencyLogContent = ({ active }) => {
const { t } = useTranslation();
@@ -86,7 +87,7 @@ const CurrencyLogContent = ({ active }) => {
if(!active) return null;
return (
- <>
+
{
>
}
- >
+
);
};
export default CurrencyLogContent;
\ No newline at end of file
diff --git a/src/components/IndexManage/CreditContent.js b/src/components/IndexManage/CreditContent.js
index cddb38a..f3579ab 100644
--- a/src/components/IndexManage/CreditContent.js
+++ b/src/components/IndexManage/CreditContent.js
@@ -16,6 +16,7 @@ import CircularProgress from '../common/CircularProgress';
import { useTranslation } from 'react-i18next';
import CurrencyIndexSearchBar from '../searchBar/CurrencyIndexSearchBar';
import { useNavigate } from 'react-router-dom';
+import { AnimatedPageWrapper } from '../common/Layout';
const CreditContent = () => {
const { t } = useTranslation();
@@ -112,7 +113,7 @@ const CreditContent = () => {
}
return (
- <>
+
{
>
}
- >
+
);
};
diff --git a/src/components/IndexManage/UserContent.js b/src/components/IndexManage/UserContent.js
index d54e4c1..8700f8b 100644
--- a/src/components/IndexManage/UserContent.js
+++ b/src/components/IndexManage/UserContent.js
@@ -10,6 +10,7 @@ import Loading from '../common/Loading';
import { ExcelDownButton } from '../common';
import { useTranslation } from 'react-i18next';
import { formatStringDate } from '../../utils';
+import { AnimatedPageWrapper } from '../common/Layout';
const UserContent = () => {
const token = sessionStorage.getItem('token');
@@ -24,20 +25,6 @@ const UserContent = () => {
const [dataList, setDataList] = useState([]);
const [resultData, setResultData] = useState([]);
- // const [sendDate, setSendDate] = useState(START_DATE);
- // const [finishDate, setFinishDate] = useState(END_DATE);
-
- const headers = [
- {key: 'date', label: '일자'},
- {key: 'nru', label: 'NRU'},
- {key: 'ugqCreate', label: '일자'},
- {key: 'dglc', label: '일자'},
- {key: 'dau', label: '일자'},
- {key: 'mcu', label: '일자'},
- {key: 'date', label: '일자'},
- {key: 'date', label: '일자'},
- ]
-
useEffect(() => {
fetchData(START_DATE, END_DATE);
}, []);
@@ -54,8 +41,6 @@ const UserContent = () => {
setLoading(false);
});
- // setSendDate(startDateToLocal);
- // setFinishDate(endDateToLocal);
};
// 검색 함수
@@ -63,14 +48,8 @@ const UserContent = () => {
fetchData(send_dt, end_dt);
};
- // 엑셀 다운로드
- // const handleXlsxExport = () => {
- // const fileName = 'Caliverse_User_Index.xlsx';
- // userIndexExport(token, fileName, sendDate, finishDate);
- // };
-
return (
- <>
+
@@ -125,8 +104,7 @@ const UserContent = () => {
- {loading && }
- >
+
);
};