6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
import type { PropsWithChildren } from "react";
|
|
|
|
export const IssuedInvoicesLayout = ({ children }: PropsWithChildren) => {
|
|
return <div>{children}</div>;
|
|
};
|