restyle all the things

This commit is contained in:
Thomas Ruoff
2021-02-25 00:13:37 +01:00
parent fb91b1cbc8
commit d4c71c40ca
9 changed files with 94 additions and 81 deletions

View File

@@ -14,7 +14,7 @@ export default function Input({
onchange: (name: string, event: ChangeEvent<{ value: string }>) => void
}) {
return (
<div>
<>
<label htmlFor={name} className="block text-sm font-medium text-gray-700">
{text}
</label>
@@ -28,6 +28,6 @@ export default function Input({
onChange={onchange.bind(null, name)}
/>
</div>
</div>
</>
)
}