I am currently working on a project, where I have to create the front end of an already existing backend project, this project already have the front end done with Angular, and I am trying to do the same thing using React, but lo link the front with the back I am not really sure how to.
this is the code of environment to link front with back from the Angular version.
export const environment = {
production: true,
backendURL: 'http://127.0.0.1:7778/',
authentification : {
username: 'user',
password: 'c000000f-00a9-00c6-aff0-7b66d975d000',
token: '##########################'
}
};