Skip to content

Commit

Permalink
Update component checklist (#1670)
Browse files Browse the repository at this point in the history
* Update component-checklist.js

* Format component checklist
  • Loading branch information
colebemis authored Dec 2, 2021
1 parent cfbafe6 commit e10a3bb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/src/component-checklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ export function ComponentChecklist({items}) {
<>
<H3>Alpha</H3>
<Checklist aria-describedby="alpha">
<Checklist.Item checked={items.propsDocumented}>Component props are documented.</Checklist.Item>
<Checklist.Item checked={items.propsDocumented}>
Component props are documented on <Link href="https://primer.style/react/">primer.style/react</Link>.
</Checklist.Item>
<Checklist.Item checked={items.noUnnecessaryDeps}>
Component does not have any unnecessary third-party dependencies.
</Checklist.Item>
Expand All @@ -22,7 +24,13 @@ export function ComponentChecklist({items}) {
<H3>Beta</H3>
<Checklist aria-describedby="beta">
<Checklist.Item checked={items.usedInProduction}>Component is used in a production application.</Checklist.Item>
<Checklist.Item checked={items.usageExamplesDocumented}>Common usage examples are documented.</Checklist.Item>
<Checklist.Item checked={items.usageExamplesDocumented}>
Common usage examples are documented on <Link href="https://primer.style/react/">primer.style/react</Link>.
</Checklist.Item>
<Checklist.Item checked={items.hasStorybookStories}>
Common usage examples are documented in <Link href="https://primer.style/react/storybook">storybook</Link>{' '}
stories.
</Checklist.Item>
<Checklist.Item checked={items.designReviewed}>
Component has been reviewed by a systems designer and any resulting issues have been addressed.
</Checklist.Item>
Expand Down

0 comments on commit e10a3bb

Please sign in to comment.