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
@@ -0,0 +1,33 @@
export default function FilePageActions() {
return (
<div
className="block-wrapper"
>
<div className="card-header">
<h3 className="card-title">
Действия
</h3>
</div>
<div className="action-buttons">
<div>
<button type="button" className="btn-action btn-warning">
Взять в работу
</button>
</div>
<div>
<button type="button" className="btn-action btn-success">
Отметить решенным
</button>
</div>
<div>
<button type="button" className="btn-action btn-secondary">
Ложное срабатывание
</button>
</div>
</div>
</div>
)
}