Skip to content

Commit

Permalink
chore: resolved eslint issues post master branch merge
Browse files Browse the repository at this point in the history
  • Loading branch information
BilalQamar95 committed Sep 23, 2022
1 parent ffcbd3c commit c223aa7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/Chip/Chip.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ import renderer from 'react-test-renderer';
import { Close } from '../../icons';
import Chip from './index';

const TestChip = (props) => (
<Chip {...props}>
Test
</Chip>
);
function TestChip(props) {
return (
<Chip {...props}>
Test
</Chip>
);
}

describe('<Chip />', () => {
describe('snapshots', () => {
Expand Down

0 comments on commit c223aa7

Please sign in to comment.