12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
"use client";
|
|
|
|
import { CurrencySettingsPanel } from "@/modules/settings/currency-settings-panel";
|
|
|
|
export function CurrencyManagementScreen() {
|
|
return (
|
|
<div className="flex w-full max-w-none flex-col gap-6">
|
|
<CurrencySettingsPanel />
|
|
</div>
|
|
);
|
|
}
|