Skip to content

Commit

Permalink
[feat] boostcampwm-2022#85 배경음악 및 눈내리기 효과 상태 atom 생성
Browse files Browse the repository at this point in the history
- musicState, snowState
  • Loading branch information
ktmihs committed Nov 25, 2022
1 parent 8ada644 commit a21f0cf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions frontend/src/store/atom/backgroundSetting.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { atom } from 'recoil';

export const musicState = atom<boolean>({
key: 'musicState',
default: true,
});

export const snowState = atom<boolean>({
key: 'snowState',
default: true,
});

0 comments on commit a21f0cf

Please sign in to comment.