Files
tripwithbonus/frontend/app/(urls)/account/create-as-sender/page.tsx
2025-05-21 16:31:09 +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="overflow-hidden rounded-2xl shadow">
<div className="bg-white p-6 sm:p-8">
<div className="space-y-4">
<h1 className="text-2xl">Отправить посылку</h1>
</div>
</div>
</div>
</div>
)
}
export default SenderPage