import React from 'react' import renderer from 'react-test-renderer' import { Panel } from 'components/UI' describe('component.UI.Panel', () => { it('should render correctly', () => { const tree = renderer .create( Header here Body here Footer here ) .toJSON() expect(tree).toMatchSnapshot() }) })