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.
- Loading branch information
1 parent
5f8e97f
commit 5e8e210
Showing
2 changed files
with
16 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import {JSX} from "react"; | ||
|
||
export default function FieldWithLabel(props: { fieldLabel: string, fieldBody: string, arrow: boolean }): JSX.Element { | ||
return ( | ||
<div className="field is-horizontal"> | ||
<div className="field-label"> | ||
<label className="label">{props.arrow && "> "} {props.fieldLabel}: </label> | ||
</div> | ||
<div className="field-body"> | ||
<div className="field"> | ||
<label>{props.fieldBody}</label> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Empty file.