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.
 
 
 
 
 

17 lines
417 B

import { NavBar } from 'antd-mobile';
import { useNavigate } from 'react-router';
export default function MeasurementSearch() {
const navigate = useNavigate();
const back = () => navigate(-1);
return (
<div>
<NavBar className="bg-white" onBack={back}>
</NavBar>
<div className="main-page-content overflow-x-hidden overflow-y-auto relative">
</div>
</div>
);
}