last work on invoice generation

This commit is contained in:
Suvodip
2025-03-31 13:55:35 +05:30
parent c927fd6087
commit 0438c30c97
9 changed files with 545 additions and 72 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
interface ContainerProps {
children: React.ReactNode;
className?: string;
}
const Container: React.FC<ContainerProps> = ({ children, className = '' }) => {
return (
<div className={`max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 ${className}`}>
{children}
</div>
);
};
export default Container;