Skip to content

Commit

Permalink
Update docs/rules/no-multi-comp.md
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Harband <[email protected]>
  • Loading branch information
vwillyams and ljharb authored Oct 21, 2024
1 parent 34d2e33 commit 82b4da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-multi-comp.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function Hello(props) {
function HelloAgain(props) {
return <div>Hello again {props.name}</div>;
}
module.exports = {Hello, HelloAgain}
module.exports = { Hello, HelloAgain };
```

## When Not To Use It
Expand Down

0 comments on commit 82b4da7

Please sign in to comment.