Skip to content

Commit 0b9cac5

Browse files
committed
Fix missing value declaration
1 parent 7eee670 commit 0b9cac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/HorizontalMenu.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ An item for the `<HorizontalMenu>` component. Used to define access to a list vi
109109

110110
```tsx
111111
<HorizontalMenu>
112-
<HorizontalMenu.DashboardItem label="Home" />
112+
<HorizontalMenu.DashboardItem label="Home" value="" />
113113
<HorizontalMenu.Item label="Artists" to="/artists" value="artists" />
114114
<HorizontalMenu.Item label="Songs" to="/songs" value="songs" />
115115
<HorizontalMenu.Item label="Labels" to="/labels" value="labels" />
@@ -246,7 +246,7 @@ This component adds a menu item that redirects to the `/` route. It accepts the
246246

247247
```jsx
248248
<HorizontalMenu>
249-
<HorizontalMenu.DashboardItem label="Home" />
249+
<HorizontalMenu.DashboardItem label="Home" value="" />
250250
<HorizontalMenu.Item label="artists" to="/artists" value="artists" />
251251
<HorizontalMenu.Item label="Business" value="business">
252252
<HorizontalMenu.Item label="Producers" to="/producers" value="producers" />

0 commit comments

Comments
 (0)