HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🤎
프론트엔드 데브코스 5기 교육생
/
소인성팀
소인성팀
/
팀프로젝트-모모
팀프로젝트-모모
/
🛠️
리팩토링
/
getPostDetail

getPostDetail

설명
특정포스트 상세
경로
src/pages/DetailPage/DetailPage.tsx 37번 라인
개선 사항
상태
완료
export const getPostDetail = createAsyncThunk( 'getPostDetail', async (postId: string) => { const response = await getApi<IPost>(`/posts/${postId}`); return response.data; }, );