8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
|
|
import { createNavigation } from "next-intl/navigation";
|
||
|
|
import { locales, defaultLocale } from "./config";
|
||
|
|
|
||
|
|
export const { Link, redirect, usePathname, useRouter } = createNavigation({
|
||
|
|
locales,
|
||
|
|
defaultLocale,
|
||
|
|
});
|