8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
|
|
import { createSharedPathnamesNavigation } from "next-intl/navigation";
|
||
|
|
import { locales } from "@/config";
|
||
|
|
|
||
|
|
export const { Link, redirect, usePathname, useRouter } =
|
||
|
|
createSharedPathnamesNavigation({
|
||
|
|
locales: locales,
|
||
|
|
defaultLocale: "in",
|
||
|
|
});
|