9 lines
252 B
JavaScript
9 lines
252 B
JavaScript
|
|
import { Permission } from "@cqsjjb/jjb-common-decorator/permission";
|
||
|
|
import DcsList from "~/components/AlarmInfo/DcsList";
|
||
|
|
|
||
|
|
function DcsAlarmInfoPage(props) {
|
||
|
|
return <DcsList {...props} type="gfd" />;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Permission(DcsAlarmInfoPage);
|