Skip to content

Commit

Permalink
feat: index.ts에서 export문 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
xodms0309 committed Oct 13, 2023
1 parent 980e205 commit a08dd8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Recipe/CommentForm/CommentForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import styled from 'styled-components';

import { SvgIcon } from '@/components/Common';
import { useToastActionContext } from '@/hooks/context';
import useRecipeCommentMutation from '@/hooks/queries/recipe/useRecipeCommentMutation';
import { useRecipeCommentMutation } from '@/hooks/queries/recipe';

interface CommentFormProps {
recipeId: number;
Expand Down
1 change: 1 addition & 0 deletions frontend/src/hooks/queries/recipe/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ export { default as useRecipeRegisterFormMutation } from './useRecipeRegisterFor
export { default as useRecipeFavoriteMutation } from './useRecipeFavoriteMutation';
export { default as useInfiniteRecipesQuery } from './useInfiniteRecipesQuery';
export { default as useInfiniteRecipeCommentQuery } from './useInfiniteRecipeCommentQuery';
export { default as useRecipeCommentMutation } from './useRecipeCommentMutation';

0 comments on commit a08dd8e

Please sign in to comment.