'use client'; import { ChevronRightIcon } from '@heroicons/react/24/outline'; import { useLanguage } from 'app/context/language-context'; import Link from 'next/link'; export default function Shoplist() { const { currentLocale, currentDictionary } = useLanguage(); console.debug({ currentLocale }); return (

shop list

{currentDictionary?.shops?.title}

{currentDictionary.shops.hokkaido}
{currentDictionary.shops.kanto}
{currentDictionary.shops.chubu}
{currentDictionary.shops.kinki}
{currentDictionary.shops.chugoku}
{currentDictionary.shops.kyushu}
); }