import { useParams } from 'react-router-dom' type Params = { pageId: string, } /** * Хук возвращает id страницы */ export const usePageId = () => { const { pageId } = useParams() return Number(pageId) }