From b5cbc456dfd0a9b18f5a38544d050412db20fef7 Mon Sep 17 00:00:00 2001 From: Junseo Park Date: Tue, 23 Feb 2021 09:56:29 +0900 Subject: [PATCH] chore: text-left for Message component --- components/Message.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Message.tsx b/components/Message.tsx index 2a01c3d..ad15c60 100644 --- a/components/Message.tsx +++ b/components/Message.tsx @@ -1,7 +1,7 @@ import { MessageColor } from '@utils/Constants' const Message = ({ type, children }:MessageProps):JSX.Element => { - return
+ return
{children}
}