refactor for file page

This commit is contained in:
smanylov
2026-03-26 11:56:36 +07:00
parent 4d5bae0812
commit a9861967ef
17 changed files with 50 additions and 36 deletions
+24
View File
@@ -0,0 +1,24 @@
export default function FilePageNote() {
return (
<div
className="violation-page-note block-wrapper"
>
<div className="card-header">
<h3 className="card-title">
Добавить заметку
</h3>
</div>
<div className="note-form">
<form method="POST">
<input type="hidden" name="action" value="add_note" />
<textarea name="note" className="note-textarea" placeholder="Добавить заметку к этому нарушению..." ></textarea>
<button type="submit" className="btn-small btn-primary-small">
Сохранить заметку
</button>
</form>
</div>
</div>
)
}