Files
tripwithbonus/frontend/app/(urls)/account/create-as-sender/page.tsx
2025-05-21 15:39:00 +03:00

18 lines
405 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.
import React from 'react'
const SenderPage = () => {
return (
<div className="space-y-3">
<div className="rounded-2xl shadow overflow-hidden">
<div className="p-6 bg-white sm:p-8">
<div className="space-y-4">
<h1 className="text-2xl">Отправить посылку</h1>
</div>
</div>
</div>
</div>
)
}
export default SenderPage