Skip to content

Commit

Permalink
feat: spinner 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Apr 9, 2024
1 parent dcb81e4 commit 9f0cfc4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/components/additional-info/spinner/Spinner.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Image from 'next/image';

import Flex from '@/components/shared/flex/Flex';

export function Spinner() {
return (
<Flex direction="column" justify="center" align="center">
<Image src="/Spinner.gif" alt="로딩" width={100} height={100} />
<h3>이미지 업로드중.. 잠시 기다려주세요</h3>
</Flex>
);
}

0 comments on commit 9f0cfc4

Please sign in to comment.