Skip to content

Commit

Permalink
feature-079: 마이페이지 스켈레톤 1차 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
gs0428 committed Feb 19, 2024
1 parent 13d4780 commit 473f2f9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/skeleton/ProfilePageSkeleton.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import * as ProfilePageSkeletonStyles from '@/styles/skeleton/ProfilePageSkeleton.style';

const ProfilePageSkeleton = () => {
return (
<ProfilePageSkeletonStyles.Container>
<ProfilePageSkeletonStyles.Title />
</ProfilePageSkeletonStyles.Container>
);
};

export default ProfilePageSkeleton;
11 changes: 11 additions & 0 deletions src/styles/skeleton/ProfilePageSkeleton.style.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import styled from 'styled-components';
import { CommonBackground } from './CategoryPageSkeleton.style';

export const Container = styled.div`
width: 873px;
`;

export const Title = styled(CommonBackground)`
width: 90px;
height: 40px;
`;

0 comments on commit 473f2f9

Please sign in to comment.