import {Wrapper, Description} from '@styles/components/checkbox';
import React from 'react';
import renderer from 'react-test-renderer';
test('renders correctly Wrapper', () => {
const tree = renderer.create().toJSON();
expect(tree).toMatchSnapshot();
});
test('renders correctly Description', () => {
const tree = renderer.create().toJSON();
expect(tree).toMatchSnapshot();
});