Files
tripwithbonus/frontend/app/(urls)/account/create-as-sender/page.tsx

18 lines
412 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client'
import React from 'react'
import RouteForm from '@/components/forms/RouteForm'
const SenderPage = () => {
return (
<RouteForm
routeHandlerUrl="/api/account/sender"
ownerType="mover"
title="Отправить посылку"
description="Заполните информацию о вашей посылке и маршруте"
/>
)
}
export default SenderPage