Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tutorial): correct broken links #2735

Merged
merged 1 commit into from
Feb 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/pages/developing/react-tutorial/step-2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ import {

Before we can render the tabs, we need to add some props for the component after
the import. These example props came from the
[React Tabs Story](http://react.carbondesignsystem.com/?selectedKind=Tabs) in
[React Tabs Story](https://react.carbondesignsystem.com/?path=/story/components-tabs--default) in
Storybook.

```javascript path=src/content/LandingPage/LandingPage.js
Expand Down Expand Up @@ -325,8 +325,8 @@ the expected `grid` > `row` > `col` DOM structure.

</InlineNotification>

Hold up! If you were to run
[DAP](https://www.ibm.com/able/dynamic-assessment-plug-in.html) to check for
Hold up! If you were to run the
[Equal Access Toolkit](https://www.ibm.com/able/toolkit) to check for
accessibility violations, you'd see
`Multiple navigation landmarks must have unique labels specified with aria-label or aria-labelledby`
because both the `Breadcrumb` and `Tabs` components use `<nav>` elements. To
Expand Down Expand Up @@ -752,7 +752,7 @@ export default RepoTable;

This component uses two props, `rows` and `headers`, and returns a Carbon
`DataTable`. As for where the various `Table*` components came from? The
[DataTable story](http://react.carbondesignsystem.com/?selectedKind=DataTable&selectedStory=with%20expansion)
[DataTable story](https://react.carbondesignsystem.com/?path=/story/components-datatable-expansion--usage)
in Storybook was used to put together the data table structure.

<InlineNotification>
Expand Down