Files
medusa-store/www/apps/cloud/components/Footer/index.tsx
2025-06-12 11:29:14 +03:00

18 lines
339 B
TypeScript

"use client"
import { Footer as UiFooter } from "docs-ui"
import Feedback from "../Feedback"
import EditButton from "../EditButton"
const Footer = () => {
return (
<UiFooter
showPagination={true}
feedbackComponent={<Feedback className="my-2" />}
editComponent={<EditButton />}
/>
)
}
export default Footer