Skip to content

Commit

Permalink
chore: named export
Browse files Browse the repository at this point in the history
  • Loading branch information
Doeunnkimm committed Sep 13, 2024
1 parent 8ce0004 commit e0c32f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface ClosingMessageProps {
inviteCode: string;
}

const ClosingMessage = (props: ClosingMessageProps) => {
export const ClosingMessage = (props: ClosingMessageProps) => {
const { inviteCode } = props;

const { data, isLoading, isSuccess } = useGetMeetingNameService({ inviteCode });
Expand Down Expand Up @@ -53,5 +53,3 @@ const ClosingMessage = (props: ClosingMessageProps) => {
</>
);
};

export default ClosingMessage;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Image from 'next/image';

import Character from '../../../common/assets/images/meeting-character.png';
import { InviteCodeShareButton } from '../components/Button/InviteCodeShareButton';
import ClosingMessage from '../components/ClosingMessage';
import { ClosingMessage } from '../components/ClosingMessage';

interface NewMeetingClosingContainerProps {
inviteCode: string;
Expand Down

0 comments on commit e0c32f4

Please sign in to comment.