Skip to content

Commit

Permalink
fix(docs): fix tab items appearance (vercel#2604)
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Hammond <[email protected]>
Co-authored-by: Thomas Knickman <[email protected]>
  • Loading branch information
3 people authored Nov 9, 2022
1 parent 311fe1a commit 3fff601
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions docs/pages/repo/docs/handbook/sharing-code/internal-packages.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,27 @@ Go back to `apps/web/pages/index.tsx`. The error should be gone!
Now, try running that app's dev script. In the default turborepo, this will be as easy as:

<Tabs items={["npm", "yarn", "pnpm"]} storageKey="selected-pkg-manager">
<Tab>```bash npm run dev ```</Tab>
<Tab>```bash yarn dev ```</Tab>
<Tab>```bash pnpm run dev ```</Tab>
<Tab>

```bash
npm run dev
```

</Tab>
<Tab>

```bash
yarn dev
```

</Tab>
<Tab>

```bash
pnpm run dev
```

</Tab>
</Tabs>

<Tabs items={['Next.js', 'Vite']} storageKey="selected-framework">
Expand Down

0 comments on commit 3fff601

Please sign in to comment.