Ringtone app
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;