20 lines
593 B
TypeScript
20 lines
593 B
TypeScript
import React from 'react';
|
|
import { __ } from '@/lib/i18n';
|
|
|
|
export default function SettingsPayments() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-semibold mb-6">{__('Payment Settings')}</h1>
|
|
<p className="text-muted-foreground mb-4">
|
|
{__('Configure payment gateways and options.')}
|
|
</p>
|
|
|
|
<div className="bg-muted/50 border rounded-lg p-6">
|
|
<p className="text-sm text-muted-foreground">
|
|
{__('Payment settings interface coming soon. This will include payment gateway configuration.')}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|