import { BranchProps, TripData } from "../components/AllLoadsComponent/type"; export const sampleBranchData: BranchProps[] = [ { id: 1, name: 'Chennai', tripsCount: 2, }, { id: 2, name: 'Hydrabad', tripsCount: 2, } ]; export const sampleTripData: TripData[] = [ { id: 345676, ton: 20, materialName: 'Bags', truckTypeName: '32 feet SXL', sourceName: 'Chennai', destinationName: 'Delhi', price: -1000, trafficName: 'Manjula', isCreatedAtLessThan30Mins:true, humanReadableCreatedAt: "2024-05-06", isInterested: true, isInterestLoading:false, loadingUnloadingPoint: [{ cityName: 'Chennai', }, { cityName: "Bangalore" }], tagNames:[ "Express"] }, { id: 624567, ton: 30, materialName: 'Fan', truckTypeName: '12 feet SXl', sourceName: 'Chennai', isCreatedAtLessThan30Mins:false, humanReadableCreatedAt: "2024-05-06", isInterested: false, isInterestLoading:true, destinationName: 'Gujarat', price: 1500, trafficName: 'Deva', loadingUnloadingPoint: [{ cityName: 'Chennai', }, { cityName: "Gujarat" } ], tagNames: ["Express"] }, ];