Skip to content

Commit

Permalink
feat: 액세서리 선택 recoil 전역상태 정의 #25
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 committed Feb 10, 2024
1 parent 93a684b commit dbfaea5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/context/accessory.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { atom } from 'recoil';

export const selectedAccessoryState = atom<number[]>({
key: 'selectedAccessoryState',
default: [],
});

0 comments on commit dbfaea5

Please sign in to comment.