Files
tripwithbonus/frontend/app/(urls)/account/create-as-sender/page.tsx
2025-05-22 14:32:09 +03:00

18 lines
418 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/create-route"
ownerType="mover"
title="Отправить посылку"
description="Заполните информацию о вашей посылке и маршруте"
/>
)
}
export default SenderPage