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

  1. import { NavBar } from 'antd-mobile';
  2. import { useNavigate } from 'react-router';
  3. export default function MeasurementSearch() {
  4. const navigate = useNavigate();
  5. const back = () => navigate(-1);
  6. return (
  7. <div>
  8. <NavBar className="bg-white" onBack={back}>
  9. </NavBar>
  10. <div className="main-page-content overflow-x-hidden overflow-y-auto relative">
  11. </div>
  12. </div>
  13. );
  14. }