"use client" import { Feedback as UiFeedback, FeedbackProps as UiFeedbackProps, } from "docs-ui" import { usePathname } from "next/navigation" import { basePathUrl } from "../../utils/base-path-url" import { useMemo } from "react" type FeedbackProps = Omit const Feedback = (props: FeedbackProps) => { const pathname = usePathname() const feedbackPathname = useMemo(() => basePathUrl(pathname), [pathname]) return ( ) } export default Feedback