Files
ckb-SuperAdmin/nkebao/src/pages/devices/DeviceDetail.tsx
笔记本里的永平 b128410346 feat: 本次提交更新内容如下
定版本,准备大批量迁移
2025-07-19 11:40:02 +08:00

31 lines
812 B
TypeScript

import React from "react";
import { NavBar } from "antd-mobile";
import Layout from "@/components/Layout/Layout";
import MeauMobile from "@/components/MeauMobile/MeauMoible";
const DeviceDetail: React.FC = () => {
return (
<Layout
header={
<NavBar
backArrow
style={{ background: "#fff" }}
onBack={() => window.history.back()}
>
<div style={{ color: "var(--primary-color)", fontWeight: 600 }}>
</div>
</NavBar>
}
footer={<MeauMobile />}
>
<div style={{ padding: 20, textAlign: "center", color: "#666" }}>
<h3></h3>
<p>...</p>
</div>
</Layout>
);
};
export default DeviceDetail;