diff --git a/components/footer/btnCookie.tsx b/components/footer/btnCookie.tsx new file mode 100644 index 0000000..3529fb1 --- /dev/null +++ b/components/footer/btnCookie.tsx @@ -0,0 +1,23 @@ +"use client"; +import { memo } from "react"; + +import { Button } from "@/components/ui/button"; +import { useCookieContext } from "@/context/cookie"; + +function ButtonCookie() { + const { toggleChangeConsentMenu } = useCookieContext(); + return ( + <> + + + ); +} + +export default memo(ButtonCookie);