Skip to content

Commit

Permalink
feat: 테이블 뷰의 히어로 이미지 시계 애니메이션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
n-ryu committed Dec 15, 2022
1 parent 92f252c commit 528934e
Show file tree
Hide file tree
Showing 5 changed files with 714 additions and 79 deletions.
5 changes: 2 additions & 3 deletions client/src/container/todos/TodosHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { ReactElement, memo } from 'react';
import Waiting from '@images/Waiting.svg';
import Image from '@components/Image';
import Text from '@components/Text';
import styled from 'styled-components';
import Waiting from '@images/Waiting';

const Wrapper = styled.div`
width: 100%;
Expand All @@ -13,7 +12,7 @@ const TodosHeader = (): ReactElement => {
return (
<Wrapper>
<Text textAlign={'left'} margin={'0 25px'} text="할일 전체보기" />
<Image src={Waiting} />
<Waiting />
</Wrapper>
);
};
Expand Down
Loading

0 comments on commit 528934e

Please sign in to comment.