Ringtone app
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

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