Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
add field with label help component
Browse files Browse the repository at this point in the history
  • Loading branch information
ALBERICLOOS committed Mar 10, 2024
1 parent 5f8e97f commit 5e8e210
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions frontend/src/components/FieldWithLabel.tsx
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.

0 comments on commit 5e8e210

Please sign in to comment.