This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from SELab-2/deadline-part
feat: deadline table made for students
- Loading branch information
Showing
4 changed files
with
83 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import {JSX} from "react"; | ||
import { FaArrowRightLong } from "react-icons/fa6"; | ||
|
||
function DeadlineElement(): JSX.Element { | ||
return ( | ||
<div className={"deadline-card is-flex is-flex-direction-column is-align-items-center py-2"}> | ||
<p>17:00 - 23/02</p> | ||
<div className={"is-flex is-flex-direction-row is-align-items-center"}> | ||
<FaArrowRightLong/> | ||
<p className={"pl-2"}>Markov Decision Diagram</p> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
function DeadlineTable(): JSX.Element { | ||
return ( | ||
<div className={"deadline"}> | ||
<div className={"deadline-head is-flex is-justify-content-center py-2"}> | ||
<p>komende deadlines</p> | ||
</div> | ||
<div className={"deadline-elements"}> | ||
<DeadlineElement/> | ||
<DeadlineElement/> | ||
<DeadlineElement/> | ||
<DeadlineElement/> | ||
<DeadlineElement/> | ||
<DeadlineElement/> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default DeadlineTable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters