import React from 'react';
import { render } from '@testing-library/react';
import FlexContainer from './FlexContainer';
describe('', () => {
it('renders FlexContainer', () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});