Skip to content

Commit

Permalink
use tabs for yarn and npm (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
HananINouman authored Jul 28, 2023
1 parent 002dff3 commit 6e0d18e
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions docs/int/quickstart/advanced/quickstart-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ sidebar_position: 1
description: Create a DV cluster using the Obol Typescript SDK
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# Create a DV using the SDK

:::caution
Expand All @@ -20,13 +23,18 @@ This is a walkthrough of using the [Obol-SDK](https://www.npmjs.com/package/@obo

Install the Obol-SDK package into your development environment

```bash
# NPM
npm install --save @obolnetwork/obol-sdk

# Yarn
yarn add @obolnetwork/obol-sdk
```
<Tabs groupId="install-sdk">
<TabItem value="npm" label="NPM" default>
<pre>
<code>npm install --save @obolnetwork/obol-sdk</code>
</pre>
</TabItem>
<TabItem value="yarn" label="Yarn">
<pre>
<code>yarn add @obolnetwork/obol-sdk</code>
</pre>
</TabItem>
</Tabs>

## Instantiate the client

Expand Down

0 comments on commit 6e0d18e

Please sign in to comment.