2026-07-27 11:54:30 +08:00
|
|
|
|
2026-07-27 14:10:33 +08:00
|
|
|
import React from "react";
|
2026-07-27 11:54:30 +08:00
|
|
|
|
2026-07-27 14:10:33 +08:00
|
|
|
function MonitorManage(props) {
|
2026-07-27 11:54:30 +08:00
|
|
|
return (
|
|
|
|
|
|
2026-07-27 14:10:33 +08:00
|
|
|
props.children
|
2026-07-27 11:54:30 +08:00
|
|
|
|
|
|
|
|
);
|
2026-07-27 14:10:33 +08:00
|
|
|
}
|
2026-07-27 11:54:30 +08:00
|
|
|
|
2026-07-27 14:10:33 +08:00
|
|
|
export default MonitorManage;
|