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

14 lines
198 B
TypeScript

import CartPage from '@/components/cart-page'
import React from 'react'
interface Props {}
function Cart(props: Props) {
const {} = props
return (
<CartPage />
)
}
export default Cart