Changing Account/category structure and Adding transactions and splits

This commit is contained in:
2025-01-25 01:56:41 +01:00
parent 38c5a69130
commit cda36315c3
20 changed files with 424 additions and 160 deletions

View File

@@ -0,0 +1,11 @@
import {CrudForm} from "../../common/crud/crud-form";
export const PayeeCreate: React.FC = () => {
return (
<CrudForm
schemaName={"PayeeCreate"}
resource={"payees"}
/>
);
};