Files
no-copy-frontend/src/app/ui/violations/file-page/violation-page-note.tsx
T

24 lines
662 B
TypeScript
Raw Normal View History

2026-03-02 18:57:52 +07:00
export default function ViolationPageNote() {
return (
<div
2026-03-17 18:59:04 +07:00
className="violation-page-note block-wrapper"
2026-03-02 18:57:52 +07:00
>
<div className="card-header">
<h3 className="card-title">
2026-03-17 18:41:02 +07:00
Добавить заметку
2026-03-02 18:57:52 +07:00
</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">
2026-03-17 18:41:02 +07:00
Сохранить заметку
2026-03-02 18:57:52 +07:00
</button>
</form>
</div>
</div>
)
}