organizing file storage

This commit is contained in:
2024-09-13 20:46:05 -06:00
parent 5c7ddf18d6
commit 1442f246b5
27 changed files with 1413 additions and 1321 deletions

View File

@@ -4,17 +4,19 @@ export default function TextInput({
value,
setValue,
label,
className,
}: {
value: string;
setValue: (newValue: string) => void;
label: string;
className?: string;
}) {
return (
<label className="block">
<label className={"block " + className}>
{label}
<br />
<input
className="bg-slate-800 rounded-md px-1"
className="bg-slate-800 rounded-md w-full px-1"
value={value}
onChange={(e) => setValue(e.target.value)}
/>