Skip to content

Commit

Permalink
[docs] Fix 404 links (#26963)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jun 26, 2021
1 parent 3327da2 commit 97bd233
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/components/stack/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ By default, `Stack` arranges items vertically in a `column`. However, the `direc

## Dividers

Use the `divider` prop to insert an element between each child. This works particularly well with the [Divider](/components/divider/) component.
Use the `divider` prop to insert an element between each child. This works particularly well with the [Divider](/components/dividers/) component.

{{"demo": "pages/components/stack/DividerStack.js", "bg": true}}

Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/interoperability/interoperability.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ const CustomizedSlider = styled(Slider)(
The [Portal](/components/portal/) provides a first-class way to render children into a DOM node that exists outside the DOM hierarchy of the parent component.
Because of the way styled-components scopes its CSS, you may run into issues where styling is not applied.

For example, if you attempt to style the `tooltip` generated by the [Tooltip](/components/tooltip/) component,
For example, if you attempt to style the `tooltip` generated by the [Tooltip](/components/tooltips/) component,
you will need to pass along the `className` property to the element being rendered outside of it's DOM hierarchy.
The following example shows a workaround:

Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/guides/routing/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Navigation components

There are two main components available to perform navigations.
The most common one is the [`Link`](/components/link/) as its name might suggest.
The most common one is the [`Link`](/components/links/) as its name might suggest.
It renders a native `<a>` element and applies the `href` as an attribute.

{{"demo": "pages/guides/routing/LinkDemo.js"}}
Expand Down

0 comments on commit 97bd233

Please sign in to comment.