Code style

This commit is contained in:
2022-10-29 21:13:28 +02:00
parent 81fc439e7f
commit 8034aadb93
10 changed files with 42 additions and 42 deletions

View File

@@ -9,10 +9,10 @@ interface Achievement {
export const achievements = (size?: string): Achievement[] => [
{
"description": "Awarded with the Deutschlandstipendium",
"icon": <Icon path={mdiSeal} size={size || "2em"} id={"mdi_achievement_stip"} />
"icon": <Icon path={mdiSeal} size={size || "2em"} id="mdi_achievement_stip" />
}, {
"description": "Developer of the official testbed for Digital Twins in Industry 4.0 of the TU Dresden",
"icon": <Icon path={mdiRobotIndustrial} size={size || "2em"} id={"mdi_achievement_i40"} />
"icon": <Icon path={mdiRobotIndustrial} size={size || "2em"} id="mdi_achievement_i40" />
}
];