33 lines
684 B
TypeScript
33 lines
684 B
TypeScript
export default function ViolationPageActions() {
|
|||
|
|
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>
|
||
|
|
)
|
||
|
|
}
|