diff --git a/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx b/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx index 793b51b..402c349 100644 --- a/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx +++ b/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx @@ -1,6 +1,15 @@ import { RepeaterPane, NotFetched, KvRow } from './repeaterPaneShared'; import type { RepeaterOwnerInfoResponse, PaneState } from '../../types'; +function LabeledBlock({ label, value }: { label: string; value: string }) { + return ( +
+ {label} +

{value}

+
+ ); +} + export function OwnerInfoPane({ data, state, @@ -17,8 +26,8 @@ export function OwnerInfoPane({ {!data ? ( ) : ( -
- +
+
)}