Ringtone app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 regels
162 B

  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;