Skip to content
Snippets Groups Projects
Commit e4e8e3f4 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

steckbrief datensatz

parent 3ebb5f32
No related branches found
No related tags found
No related merge requests found
Pipeline #417727 passed with warnings
interface Steckbrief{
vorname: string;
nachname: string;
linkedin?: string;
picture: string;
pronouns: string;
studiengang: string;
headof?: string;
igemjob: string;
whyigem: string;
bestpart: string;
biggestchallenge: string;
funfacts: Array<string>;
favmusic: string;
}
export const teammembers: Array<Steckbrief> = [
{
vorname: "Sinan",
nachname: "Zimmermann",
linkedin: "string",
picture: "string",
pronouns: "string",
studiengang: "string",
igemjob: "string",
whyigem: "string",
bestpart: "string",
biggestchallenge: "string",
funfacts: [
"one",
"two"
],
favmusic: "string",
}
]
export const advisors: Array<Steckbrief> = [
]
export const instructor: Array<Steckbrief> = [
]
export const pis: Array<Steckbrief> = [
]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment