diff --git a/src/ui/pages/maru-egg.tsx b/src/ui/pages/maru-egg.tsx index 08e4f7f..9233107 100644 --- a/src/ui/pages/maru-egg.tsx +++ b/src/ui/pages/maru-egg.tsx @@ -1,22 +1,51 @@ import React from 'react'; import Header from '../components/molecule/user/header/header'; -import useTypeStore from '../../store/store'; +import useTypeStore from '../../store/type-store'; +import ChatCard from '../components/atom/chat-card/chat-card'; +import ChatForm from '../components/molecule/user/chat-form/chat-form'; +import useChatStore from '../../store/chat-store'; const MaruEgg: React.FC = () => { const { setSelectedType, type } = useTypeStore(); + const { messages } = useChatStore(); const handleButtonClick = (selectedType: 'SUSI' | 'PYEONIP' | 'JEONGSI') => { setSelectedType(selectedType); }; return (