Skip to content

Commit

Permalink
feat: Bubble integration details and the corresponding demo guide cod…
Browse files Browse the repository at this point in the history
…e added. (#880)

**This MR introduces a new feature:**

In the **Bubble Integration** section, users are now presented with a
demo code showcasing how to use the Impler SDK for integration with
Bubble.
  • Loading branch information
chavda-bhavik authored Nov 26, 2024
2 parents a0a9fa7 + 547bb9f commit ad5828a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion apps/web/components/Integration/IntegrationData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ export class AppComponent {
),
},
[IntegrationEnum.BUBBLE]: {
'Integration Steps': () => (
'1) Integration Steps': () => (
<>
<List type="ordered" styles={{ item: { margin: '10px 0', paddingLeft: '20px' } }}>
<List.Item>
Expand Down Expand Up @@ -1000,5 +1000,18 @@ export class AppComponent {
</Link>
</>
),
'2) Add Import Button': ({ accessToken, projectId, templateId }) => (
<>
<CodeBlock
height={HEIGHTS.WITH_TEXT}
code={`
projectId: "${projectId}",
templateId: "${templateId}",
accessToken: "${accessToken}",
`}
language="javascript"
/>
</>
),
},
};

0 comments on commit ad5828a

Please sign in to comment.