Skip to content

Commit

Permalink
readme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maphel committed Sep 3, 2023
1 parent 0844bb6 commit 3d3d2d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const arrayResult = classNames(['array-class1', 'array-class2']);
console.log(arrayResult); // Output: "array-class1 array-class2"

// Exessive Usage
const exessiveResult = classNames('a', ['b', 'c'], {d: true}, ['e', {f: true}, ' g', 'h '], [' i ', [{' j': true}]], ' k', 'l ', ' m ')
const exessiveResult = classNames('a', ['b', 'c'], {d: true}, ['e', {f: true}, ' g', 'h '], [' i ', [{' j': true}]], ' k', 'l ', ' m ');
console.log(exessiveResult); // Output: "a b c d e f g h i j k l m"
```
---
Expand Down

0 comments on commit 3d3d2d0

Please sign in to comment.