| 1234567891011121314151617 |
- import { NextPage, GetStaticProps } from 'next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import CartContent from '../../components/cart-content/CartContent';
-
- const CartPage: NextPage = () => {
- return <CartContent></CartContent>;
- };
-
- export const getStaticProps: GetStaticProps = async ({ locale }: any) => {
- return {
- props: {
- ...(await serverSideTranslations(locale, ['cart'])),
- },
- };
- };
-
- export default CartPage;
|