I have a SAFE stack app. I need to enable users to upload and download files.
Uploading works by making use of
Browser.Dom.FileReader.Create()
Is there a corresponding way to enable users to download files?
This answer offers a solution using a completely different mechanism which depends on a js library. Is there no mechanism that corresponds to the FileReader
approach?