14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import ComponentsAppsInvoicePreview from '@/components/components-apps-invoice-preview';
|
|
import { Metadata } from 'next';
|
|
import React from 'react';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Invoice Preview',
|
|
};
|
|
|
|
const InvoicePreview = () => {
|
|
return <ComponentsAppsInvoicePreview />;
|
|
};
|
|
|
|
export default InvoicePreview;
|