탭 모션 적용

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 { 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 (
<>
<AnimatedPageWrapper>
<FormWrapper>
<ItemLogSearchBar
searchParams={searchParams}
@@ -164,7 +165,7 @@ const CurrencyLogContent = ({ active }) => {
<TopButton />
</>
}
</>
</AnimatedPageWrapper>
);
};
export default CurrencyLogContent;