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.
 
 
 

13 lines
268 B

  1. import {NextPage} from 'next'
  2. import CreateRingtoneTemplate from '../../../../components/templates/CreateRingtone'
  3. type Props = {}
  4. const MyCreateRingtonePage: NextPage<Props> = () => {
  5. return (
  6. <CreateRingtoneTemplate />
  7. )
  8. }
  9. export default MyCreateRingtonePage