Ringtone app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

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