14 lines
238 B
TypeScript
Raw Permalink Normal View History

import { Card } from '~/components/ui/card'
export const NewsPaymentPage = () => {
return (
<div>
<div className="sm-max:mx-5 relative">
<Card>
<h1>Payment</h1>
</Card>
</div>
</div>
)
}