You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.6 KiB

import { NavBar, SpinLoading } from 'antd-mobile';
import './Bluetooth.scss';
export default function Bluetooth() {
return (
<div>
<NavBar className="bg-white" back={null}>
</NavBar>
<div className="home-page-content overflow-x-hidden overflow-y-auto">
<section>
<div className="h-[42px] px-5">
<h1 className="h-[42px] leading-[42px] text-base text-text font-medium"></h1>
</div>
<div className="bg-white px-5 text-sm text-text">
<div className="h-12 flex justify-between items-center border-b border-[#eee]">
<span></span>
<span></span>
</div>
<div className="h-12 flex justify-between items-center border-b border-[#eee]">
<span></span>
<span></span>
</div>
</div>
</section>
<section>
<div className="h-[42px] px-5 flex items-center justify-between">
<h1 className="h-[42px] leading-[42px] text-base text-text font-medium"></h1>
<SpinLoading />
</div>
<div className="bg-white px-5 text-sm text-text">
<div className="h-12 flex justify-between items-center border-b border-[#eee]">
<span>1</span>
</div>
<div className="h-12 flex justify-between items-center border-b border-[#eee]">
<span>2</span>
</div>
</div>
</section>
</div>
</div>
);
}