Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617
  1. import { NextPage, GetStaticProps } from 'next';
  2. import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
  3. import CartContent from '../../components/cart-content/CartContent';
  4. const CartPage: NextPage = () => {
  5. return <CartContent></CartContent>;
  6. };
  7. export const getStaticProps: GetStaticProps = async ({ locale }: any) => {
  8. return {
  9. props: {
  10. ...(await serverSideTranslations(locale, ['cart'])),
  11. },
  12. };
  13. };
  14. export default CartPage;