Skip to content

Commit

Permalink
feat: FeedKebabStore 인터페이스로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
BangDori committed May 22, 2024
1 parent 50e6324 commit d2e2d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/feed-kebab/store/feed-kebab-store.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { create } from 'zustand';
import { devtools } from 'zustand/middleware';

type FeedKebabStore = {
interface FeedKebabStore {
openedFeedId: number;
isOpen: boolean;
openKebab: (_: number) => void;
closeKebab: () => void;
};
}

/**
* 피드의 kebab 메뉴를 관리하는 store
Expand Down

0 comments on commit d2e2d19

Please sign in to comment.