Ringtone app
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

index.tsx 162 B

12345678910111213
  1. import {NextPage} from 'next';
  2. type Props = {}
  3. const IndexPage: NextPage<Props> = () => {
  4. return (
  5. <div>
  6. Hello
  7. </div>
  8. );
  9. };
  10. export default IndexPage;