'use client' import React from 'react' import { getCookie } from 'cookies-next' import styles from './index.module.scss' interface Props { data: Guidebook onClick: () => void } const GuidebookResult = (props: Props) => { const locale = (getCookie('NEXT_LOCALE') as string) || 'en' const guidebook = props.data return (
{guidebook.description[locale]}