feat(frontend): verschillende groepen tonen binnen een assignment
This commit is contained in:
parent
16f8aa449e
commit
056b2d30fa
2 changed files with 77 additions and 11 deletions
|
@ -61,6 +61,7 @@ type Assignment = {
|
|||
description: string;
|
||||
};
|
||||
|
||||
|
||||
export const assignments: Assignment[] = Array.from({length: 4}, (_, i) => ({
|
||||
id: `assignment${i}`,
|
||||
title: `Assignment ${i}`,
|
||||
|
@ -80,6 +81,23 @@ export const assignments: Assignment[] = Array.from({length: 4}, (_, i) => ({
|
|||
"Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. " +
|
||||
"Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. " +
|
||||
"Sed consequat, leo eget bibendum sodales, augue velit cursus nunc,",
|
||||
groups: [
|
||||
{
|
||||
id: 'group1',
|
||||
members: [
|
||||
student01,
|
||||
student02
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'group2',
|
||||
members: [
|
||||
student01,
|
||||
student03
|
||||
]
|
||||
}
|
||||
]
|
||||
}));
|
||||
|
||||
|
||||
export const classes: Array<Class> = [class01, class02, class03];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue