How to display PDF File from Static Resource using Lightning Web Component(LWC) in Salesforce?
iframe tag can be used to display PDF File from Static Resource using Lightning Web Component(LWC) in Salesforce. Sample Code: HTML: <template> <iframe src={SamplePDFURL} height="100%" width="100%"></iframe> </template> JavaScript: import ....