1import Checkbox from '../Checkbox';
2
3describe('Checkbox', () => {
4  it('exports checkbox as default', () => {
5    expect(Checkbox).toBeInstanceOf(Object);
6  });
7});
8