kreirane komponente

This commit is contained in:
2024-01-04 10:30:43 +01:00
parent e1a225b91b
commit b653ce40bc
11 changed files with 191 additions and 99 deletions

View File

@@ -0,0 +1,16 @@
import { FC } from "react";
export interface BillTemplateFormProps {
}
export const BillTemplateForm:FC<BillTemplateFormProps> = () =>
<div className="card card-compact card-bordered max-w-sm bg-base-100 shadow-s my-1">
<div className="card-body">
<form>
<input type="text" placeholder="Naziv računa" className="input input-bordered w-full" value="GSKG" />
<textarea className="textarea textarea-bordered my-1 w-full max-w-sm block" placeholder="Opis" value="Pričuva, Voda, Smeće"></textarea>
<button className="btn btn-primary">Spremi</button>
</form>
</div>
</div>;