-
Notifications
You must be signed in to change notification settings - Fork 0
1. 데이터 모델 명세
codeisneverodd edited this page Jun 28, 2022
·
1 revision
프로젝트 전반에 걸쳐 사용되는 중요한 데이터 모델에 대한 명세를 작성합니다.
- type: atom
- model
export const solutionState = atom({
key: "solutionState",
default: {
level: number, //사용자가 현재 보고있는 문제의 레벨을 의미합니다
fileName: string, //사용자가 현재 보고있는 문제의 이름을 의미합니다.
solution: array(string), //사용자가 현재 보고있는 문제의 해설 코드 string 들을 모은 배열을 의미합니다.
},
});
현재는 Collaborator 만 편집 권한이 있습니다 😸