import React from 'react'; /** * Twitter Post action component */ const TwitterPostAction = ({ index, onActionConfigChange, getConfigValue }) => { return (
onActionConfigChange('token', e.target.value)} className="form-control" placeholder="Twitter API token" /> Twitter API token with posting permissions
onActionConfigChange('noCharacterLimits', e.target.checked ? 'true' : 'false')} className="form-check-input" /> Enable to bypass the 280 character limit check
); }; export default TwitterPostAction;