-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: proper support for events with rxjs
- Loading branch information
Showing
25 changed files
with
424 additions
and
270 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 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
Empty file.
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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
26 changes: 26 additions & 0 deletions
26
frontend/src/components/homePage/statusSections/agreement.tsx
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,26 @@ | ||
export const Agreement = () => { | ||
return ( | ||
<div className="stats shadow mt-2"> | ||
<div className="stat " style={{ opacity: 0.3 }}> | ||
<div className="stat-title">Agreement</div> | ||
<div className="stat-value">-</div> | ||
</div> | ||
<div className="stat "> | ||
{/* <div className="stat-title">Given</div> | ||
<div className="stat-value">4200</div> */} | ||
</div> | ||
<div className="stat "></div> | ||
<div className="stat "></div> | ||
<div | ||
className="stat " | ||
style={{ | ||
opacity: 0.3, | ||
}} | ||
> | ||
<div className="stat-actions m-0"> | ||
<button className="btn">Create </button> | ||
</div> | ||
</div>{" "} | ||
</div> | ||
); | ||
}; |
Oops, something went wrong.