This repository has been archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1661 from 18F/jf-remove-asset-path
Fix missing checkmarks for sidenav and input fields
- Loading branch information
Showing
8 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* eslint import/no-extraneous-dependencies: 0 */ | ||
|
||
import React from 'react' | ||
import { storiesOf } from '@storybook/react' | ||
import StoryRouter from 'storybook-react-router' | ||
|
||
import { SectionLink } from './SectionLink' | ||
|
||
storiesOf('SectionLink', module) | ||
.addDecorator(StoryRouter()) | ||
.add('default', () => ( | ||
<ol className="usa-sidenav-list"> | ||
<SectionLink | ||
section={{ label: 'Test Link' }} | ||
/> | ||
</ol> | ||
)) | ||
.add('with errors', () => ( | ||
<ol className="usa-sidenav-list"> | ||
<SectionLink | ||
section={{ label: 'Test Link' }} | ||
errors | ||
/> | ||
</ol> | ||
)) | ||
.add('completed', () => ( | ||
<ol className="usa-sidenav-list"> | ||
<SectionLink | ||
section={{ label: 'Test Link' }} | ||
completed | ||
/> | ||
</ol> | ||
)) | ||
.add('locked', () => ( | ||
<ol className="usa-sidenav-list"> | ||
<SectionLink | ||
section={{ label: 'Test Link' }} | ||
locked | ||
/> | ||
</ol> | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters