import React from 'react'; import Rows from './index'; const data = { children: 'children', }; describe('Rows', () => { const defaultElement = ; let wrapper; beforeEach(() => { wrapper = shallow(defaultElement); }); it('should render correctly', () => { expect(wrapper).toMatchSnapshot(); }); });