본문 바로가기
728x90
반응형

분류 전체보기52

ERP (Enterprise Resource Planning) system for cash and treasury management Let’s explore the differences between Treasury ERP and Financial Management ERP: ERP Systems: Coverage: Financial Management ERP: These systems cover much of the financial supply chain. They manage underlying business operations, financial transactions, and risk impact. Treasury ERP: Treasury features are often included within ERP systems. They handle everything from day-to-day financial operati.. 2024. 3. 9.
Redux vs Redux Toolkit (code example) Redux Basics Redux is a state management library that allows you to have a global state in the context of react. It means that you can have a state that is accessible from any component no matter where they are in the tree. Important concepts - 1. Store: - global state that is going to be accessible across any component no matter where they are in the react application. store you get to define i.. 2024. 3. 9.
Redux - Complete Tutorial (with Redux Toolkit) https://www.youtube.com/watch?v=5yEG6GhoJBs 2024. 3. 9.
Typescript - interface, type, class 이해하기 Let’s delve into the differences between interfaces, types, and classes in TypeScript, along with practical examples for each. Interfaces An interface defines a contract that an object must adhere to. It describes the shape of an object by specifying its properties and methods. Here’s an example: TypeScript interface Client { name: string; address: string; } You can express the same contract usi.. 2024. 3. 9.
728x90
반응형