Was wondering what would be the best route to make my Filestack modal appear without actually needing to click the component's button. So far I've attempted attaching a ref to the component but I don't get back any methods or children to indirectly select the rendered button and firing a click event. Reading through the docs it doesn't look like there's a direct way. Am I overlooking something here?
<ReactFilestack
apikey={API_KEY}
ref={fileStackRef}
buttonClass="button"
buttonText={'Upload'}
options={options}
onSuccess={setUpload}
onError={setErrorMessage}
/>