import React from 'react';
import ShallowRenderer from 'react-test-renderer/shallow';
import App from '../index';
const renderer = new ShallowRenderer();
describe('', () => {
it('should render and match the snapshot', () => {
renderer.render();
const renderedOutput = renderer.getRenderOutput();
expect(renderedOutput).toMatchSnapshot();
});
});