This commit is contained in:
2026-02-26 17:14:40 +07:00
parent a8df344207
commit b567aef3d8
9 changed files with 216 additions and 156 deletions

View File

@@ -1,4 +1,5 @@
export default function Popups() {
export default function Popups({ onRebuild }: any) {
return (<>
{/* Rebuild */}
<div className="buildpc-popup-container buildpc-popup-rebuild text-black" id="popup-rebuild_config">
@@ -13,7 +14,9 @@ export default function Popups() {
<button
className="btn-red"
style={{ background: '#FA354A', color: '#fff' }}
onClick={() => { /* reBuild(); */ }}>
onClick={() => {
onRebuild();
}}>
Xác nhận
</button>
</div>