/ packages / frontend / src / routes / edit-listing.lazy.tsx
edit-listing.lazy.tsx
 1  import { createLazyFileRoute } from "@tanstack/react-router";
 2  import EditProduct from "../components/merchants/listings/EditListing.tsx";
 3  
 4  export const Route = createLazyFileRoute("/edit-listing")({
 5    component: RouteComponent,
 6  });
 7  
 8  function RouteComponent() {
 9    return <EditProduct />;
10  }