in the development of a react project, how to optimize multiple interfaces on a page?
In react project development, multiple APIs are called on a page.
for example, page calls API A-> B-> C to initialize the page, and the A, B, C API is used not only in page initialization but also in
interactive operations. At present, I deal with it in this way
init----> dispatch(A),dispatch(B),dispatch(C)
dispatch(A)->dispatch(B),dispatch(C)
I don"t know if there will be performance problems in this way, how to optimize it?