조회조건 스켈레톤

This commit is contained in:
2025-05-01 07:04:36 +09:00
parent fa290b64ec
commit 065c081a85

View File

@@ -0,0 +1,17 @@
import { BtnWrapper, SearchbarStyle, SearchRow, Skeleton } from '../../styles/Components';
export const PageSkeleton = () => {
return (
<SearchbarStyle direction="column">
<SearchRow>
<Skeleton width="80%" height="35px" />
</SearchRow>
<SearchRow>
<BtnWrapper $gap="8px">
<Skeleton width="100px" height="35px" />
<Skeleton width="35px" height="35px" />
</BtnWrapper>
</SearchRow>
</SearchbarStyle>
)
}