mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: format with prettier
This commit is contained in:
parent
03fb09c3d6
commit
a147ad6610
164 changed files with 11257 additions and 8154 deletions
|
|
@ -1,20 +1,30 @@
|
|||
export const initialData = {
|
||||
activities: {
|
||||
"activity-1": { id: "activity-1", content: "First activity" },
|
||||
"activity-2": { id: "activity-2", content: "Second activity" },
|
||||
"activity-3": { id: "activity-3", content: "Third activity" },
|
||||
"activity-4": { id: "activity-4", content: "Fourth activity" },
|
||||
"activity-5": { id: "activity-5", content: "Fifth activity" },
|
||||
'activity-1': { id: 'activity-1', content: 'First activity' },
|
||||
'activity-2': { id: 'activity-2', content: 'Second activity' },
|
||||
'activity-3': { id: 'activity-3', content: 'Third activity' },
|
||||
'activity-4': { id: 'activity-4', content: 'Fourth activity' },
|
||||
'activity-5': { id: 'activity-5', content: 'Fifth activity' },
|
||||
},
|
||||
chapters: {
|
||||
"chapter-1": { id: "chapter-1", name: "Chapter 1", activityIds: ["activity-1", "activity-2", "activity-3"] },
|
||||
"chapter-2": { id: "chapter-2", name: "Chapter 2", activityIds: ["activity-4"] },
|
||||
"chapter-3": { id: "chapter-3", name: "Chapter 3", activityIds: ["activity-5"] },
|
||||
'chapter-1': {
|
||||
id: 'chapter-1',
|
||||
name: 'Chapter 1',
|
||||
activityIds: ['activity-1', 'activity-2', 'activity-3'],
|
||||
},
|
||||
'chapter-2': {
|
||||
id: 'chapter-2',
|
||||
name: 'Chapter 2',
|
||||
activityIds: ['activity-4'],
|
||||
},
|
||||
'chapter-3': {
|
||||
id: 'chapter-3',
|
||||
name: 'Chapter 3',
|
||||
activityIds: ['activity-5'],
|
||||
},
|
||||
},
|
||||
|
||||
chapterOrder: ["chapter-1", "chapter-2", "chapter-3"],
|
||||
};
|
||||
|
||||
export const initialData2 = {
|
||||
};
|
||||
chapterOrder: ['chapter-1', 'chapter-2', 'chapter-3'],
|
||||
}
|
||||
|
||||
export const initialData2 = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue