First Prototype Frontend (Not Finished)

This commit is contained in:
brausjonas
2023-05-16 22:03:02 +02:00
parent ef1358baa4
commit f6af4be682
17 changed files with 2066178 additions and 1794 deletions
+12
View File
@@ -0,0 +1,12 @@
import StatusBar from "@/components/StatusBar";
import React from "react";
export default function SemesterTile(p)
{
return (
<div onClick={() => p.onClick()} className={"semester-tile"}>
<p>{p.text}</p>
<StatusBar progress={0}/>
</div>
)
}