Ringtone app
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

19 lignes
286 B

  1. import {GetServerSideProps, NextPage} from 'next';
  2. type Props = {}
  3. const IndexPage: NextPage<Props> = () => {
  4. return (
  5. <>
  6. Landing Page Here
  7. </>
  8. );
  9. };
  10. export const getServerSideProps: GetServerSideProps = async (ctx) => {
  11. return {
  12. props: {}
  13. }
  14. }
  15. export default IndexPage;