Skip to content

Commit

Permalink
Docs: fix sample code (#767)
Browse files Browse the repository at this point in the history
Component import was missing.
  • Loading branch information
crisog committed May 6, 2020
1 parent 2df422b commit bc35fec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ This is how **Header** can be used inside an app.
```jsx
// App.js
import React from 'react'
import { Main, Header, Button, IconPlus } from '@aragon/ui'
import { Main, Header, Button, IconPlus, Tag } from '@aragon/ui'

function App() {
return (
Expand Down Expand Up @@ -113,7 +113,7 @@ To make things a bit more interesting, we are going to add a [SidePanel](https:/
```jsx
// App.js
import React, { useState } from 'react'
import { Main, Header, Button, IconPlus, SidePanel } from '@aragon/ui'
import { Main, Header, Button, IconPlus, Tag, SidePanel } from '@aragon/ui'

function App() {
const [sidePanelOpened, setSidePanelOpened] = useState(false)
Expand Down

0 comments on commit bc35fec

Please sign in to comment.