safety-eval-service-frontend/src/pages/Container/QualApplication/index.js

15 lines
250 B
JavaScript
Raw Normal View History

2026-07-01 11:55:19 +08:00
import React from "react";
2026-06-30 17:32:29 +08:00
/** 资质申请管理模块入口:需先有机构信息 */
function QualApplication(props) {
2026-07-01 11:55:19 +08:00
2026-06-30 17:32:29 +08:00
return (
<div style={{ height: "100%" }}>
{props.children}
</div>
);
}
export default QualApplication;