Skip to content

Commit 74fda94

Browse files
Fix broken API links in components/index.mdx
1 parent 8d3dcb9 commit 74fda94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs-v2/pages/components/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import VideoPlayer from '@/components/VideoPlayer'
55

66
## What are Components?
77

8-
Components are [Node.js modules](api/#component-structure) that run on Pipedream's serverless infrastructure. They can use Pipedream managed auth for [{process.env.PUBLIC_APPS}+ apps](https://pipedream.com/explore) (for both OAuth and key-based APIs) and [use most npm packages](api/#using-npm-packages) with no `npm install` or `package.json` required.
8+
Components are [Node.js modules](/components/contributing/api/#component-structure) that run on Pipedream's serverless infrastructure. They can use Pipedream managed auth for [{process.env.PUBLIC_APPS}+ apps](https://pipedream.com/explore) (for both OAuth and key-based APIs) and [use most npm packages](/components/contributing/api/#using-npm-packages) with no `npm install` or `package.json` required.
99

1010
Components are most commonly used as the building blocks of Pipedream workflows, but they can also be used like typical serverless functions. You can explore curated components for popular apps in Pipedream's [Marketplace](https://pipedream.com/explore) and [GitHub repo](https://github.com/PipedreamHQ/pipedream/tree/master/components) or you can author and share your own.
1111

@@ -24,10 +24,10 @@ Pipedream supports two types of components — [sources](#sources) and [actions]
2424
**Capabilities**
2525

2626
- Accept user input on deploy via `props`
27-
- [Trigger](api/#interface-props) on HTTP requests, timers, cron schedules, or manually
27+
- [Trigger](/components/contributing/api/#interface-props) on HTTP requests, timers, cron schedules, or manually
2828
- Emit events that can be inspected, trigger Pipedream [workflows](/workflows/building-workflows/) and that can be consumed in your own app via [API](/rest-api/)
29-
- Store and retrieve state using the [built-in key-value store](api/#db)
30-
- Use any of Pipedream's built-in [deduping strategies](api/#dedupe-strategies)
29+
- Store and retrieve state using the [built-in key-value store](/components/contributing/api/#db)
30+
- Use any of Pipedream's built-in [deduping strategies](/components/contributing/api/#dedupe-strategies)
3131
- Deploy via Pipedream's UI, CLI or API
3232

3333
**Example**

0 commit comments

Comments
 (0)