import React from 'react';
import { render } from '../../utils/test-react-testing-library';
import TextField from './TextField';
describe(' component', () => {
const props = {
name: 'test',
value: 'test',
};
test('should load the component in default state', () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});