Browse Source
* fix: Checkbox Group TS typo
* Revert "fix: Checkbox Group TS typo"
This reverts commit 0898f84ff7
.
* Update Group.tsx
* Create type.test.tsx
pull/27236/head
Tom Xu
4 years ago
committed by
GitHub
2 changed files with 16 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
import * as React from 'react'; |
|||
import Checkbox from '..'; |
|||
import Input from '../../input'; |
|||
|
|||
describe('Checkbox.typescript', () => { |
|||
it('Checkbox.Group', () => { |
|||
const group = ( |
|||
<Checkbox.Group> |
|||
<Input /> |
|||
</Checkbox.Group> |
|||
); |
|||
|
|||
expect(group).toBeTruthy(); |
|||
}); |
|||
}); |
Loading…
Reference in new issue