Next-intl useTranslations Problem Not working in nextjs

70 Views Asked by At

I have created a custom component for translating text by next-intl the component is below but when importing the component in server component it gives me error how to fixed it?

import { useTranslations } from "next-intl";

const Translations = ({ children }) => {
  const { t } = useTranslations();

  return t(children);
};

export default Translations;
0

There are 0 best solutions below