github-pages-deploy-action/node_modules/eslint-plugin-jsx-a11y/docs/rules/scope.md
2020-03-06 22:45:40 -05:00

23 lines
302 B
Markdown

# scope
The `scope` scope should be used only on `<th>` elements.
#### References
1. [axe-core, scope](https://dequeuniversity.com/rules/axe/1.1/scope)
## Rule details
This rule takes no arguments.
### Succeed
```jsx
<th scope="col" />
<th scope={scope} />
```
### Fail
```jsx
<div scope />
```