How can i serve files of different format(pdf,xlsx,doc) stored in a AWS s3 bucket to a HTML page with iframe. I am able to get pdf file but other type of files just downloads in the browser instead of displaying.
To render the pdf file, I am first converting the content to a blob and passing it to src of iframe as below,
<div>
<iframe className="w-screen h-screen" src={file} />
</div>