Multipart (AWS S3) upload progress in React

Hello team, I have run into some issues with the Dashboard component in React. The progress/status bar do not display during/after upload. Please see my code below:

 const uppy = new Uppy({
    autoProceed: false,
    restrictions: {
      maxNumberOfFiles: 10,
    },
  })
 <Dashboard uppy={uppy} />

I am not sure if I am missing anything in the configuration? TIA

Is uppy outside of the component?

It was unfortunately within the component. I’ve moved it out and it’s working perfectly, thank you @Merlijn!