Explorar el Código

refactor: typescript

master
ntasicc hace 3 años
padre
commit
cb3c64ab3d
Se han modificado 1 ficheros con 0 adiciones y 17 borrados
  1. 0
    17
      pages/contact/index.ts

+ 0
- 17
pages/contact/index.ts Ver fichero

@@ -1,17 +0,0 @@
import { GetStaticProps, NextPage } from 'next';
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
import ContactForm from '../../components/forms/contact/ContactForm';

const ContactPage: NextPage = () => {
return <ContactForm />;
};

export const getStaticProps: GetStaticProps = async ({ locale }: any) => {
return {
props: {
...(await serverSideTranslations(locale, ['forms', 'contact', 'common'])),
},
};
};

export default ContactPage;

Cargando…
Cancelar
Guardar