26/02
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user