kreirane komponente
This commit is contained in:
16
app/ui/BillTemplateForm.tsx
Normal file
16
app/ui/BillTemplateForm.tsx
Normal 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>;
|
||||
Reference in New Issue
Block a user