More refactoring and bugfixing

This commit is contained in:
Jon Staab
2026-03-27 15:03:54 -07:00
parent 8986e5481d
commit caee3742bb
9 changed files with 101 additions and 103 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { JSX } from "solid-js"
export default function ToggleField(props: { label: string; children: JSX.Element }) {
return (
<div class="flex items-center justify-between gap-3">
<dt class="text-xs font-medium text-gray-500 uppercase tracking-wide">{props.label}</dt>
<dd class="text-sm text-gray-900">{props.children}</dd>
</div>
)
}