+
Workflows
+
+
+ Reusable workflow definitions that can be referenced from operations.
+
+
+ {workflows.entrySeq().map(([workflowName, workflow]) => (
+
+
{workflowName}
+
{workflow.get("description")}
+ {/* Render workflow steps */}
+
+ ))}
+
+ )
+}
+
+Workflows.propTypes = {
+ specSelectors: PropTypes.object.isRequired,
+ getComponent: PropTypes.func.isRequired,
+}
+
+export default Workflows
+```
+
+#### 4d. AsyncAPI Auth Component (src/core/plugins/oas40/components/auth/async-api-auth.jsx)
+
+```javascript
+/**
+ * @prettier
+ */
+
+import React from "react"
+import PropTypes from "prop-types"
+
+const AsyncAPIAuth = ({ schema, name, getComponent, onChange, authorized }) => {
+ const authValue = authorized && authorized.getIn([name])
+ const Input = getComponent("Input")
+ const Button = getComponent("Button")
+
+ return (
+