Ringtone app
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

19 rindas
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;