import React from 'react';
import renderer from 'react-test-renderer';
import PickerSection from '../PickerSection';
describe('', () => {
it('should match snapshot', () => {
const tree = renderer.create().toJSON();
expect(tree).toMatchSnapshot();
});
});