Ringtone app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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;