12 lines
383 B
TypeScript
12 lines
383 B
TypeScript
import type { Metadata } from 'next';
|
|
import { TransferWizardClient } from '@/components/chuyen-nhuong/transfer-wizard-client';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Đăng tin chuyển nhượng',
|
|
description: 'Đăng tin chuyển nhượng nội thất, thiết bị hoặc mặt bằng',
|
|
};
|
|
|
|
export default function DangTinPage() {
|
|
return <TransferWizardClient />;
|
|
}
|