탭 모션 적용

This commit is contained in:
2025-07-16 18:38:38 +09:00
parent 943b146496
commit 7fa9abcad4
5 changed files with 15 additions and 33 deletions

View File

@@ -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 (
<>
<AnimatedPageWrapper>
<FormWrapper>
<CurrencyItemLogSearchBar
searchParams={searchParams}
@@ -161,7 +162,7 @@ const CurrencyItemLogContent = ({ active }) => {
<TopButton />
</>
}
</>
</AnimatedPageWrapper>
);
};
export default CurrencyItemLogContent;