Nextjs Как объявить тип реквизита при прохождении?

#typescript #next.js Вопрос: Это моя страница import { InferGetServerSidePropsType, GetServerSideProps } from 'next' import ProductList from '../../component/product/ProductList' export interface Item { title: string price: number } const products = ({…

Продолжить чтениеNextjs Как объявить тип реквизита при прохождении?