14 lines
198 B
TypeScript
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
|