freshyo/apps/user-ui/app/(drawer)/(tabs)/flash-delivery/(cart)/cart.tsx
2026-01-24 00:13:15 +05:30

6 lines
No EOL
168 B
TypeScript

import React from 'react';
import CartPage from '@/components/cart-page';
export default function FlashDeliveryCart() {
return <CartPage isFlashDelivery={true} />;
}