Skip to content

Commit

Permalink
#59 [feat]: 대시보드에 기능 가시화
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-g00 committed Oct 1, 2024
1 parent 81f3635 commit a57fa85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/auth/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import PostCard from '../components/PostCard'; // 게시물 카드 컴포넌트
import { getUserData } from '../utils/api'; // 사용자 데이터 가져오는 API 함수
import UserCard from '../components/UserCard'; // 사용자 카드 컴포넌트
import UserProfile from '../components/UserProfile'; // 사용자 프로필 컴포넌트
import ReactionCount from '../components/ReactionCount'; // 리액션 카운트 컴포넌트

const Dashboard = () => {
const [user, setUser] = useState(null);
Expand Down Expand Up @@ -132,6 +133,7 @@ const Dashboard = () => {
<PostCard />
<UserCard />
<UserProfile />
<ReactionCount />
{isModalOpen && (
<ProfileEditModal
user={user}
Expand Down

0 comments on commit a57fa85

Please sign in to comment.