import React from 'react' import { render } from '@testing-library/react' import Row from './Row' describe('Row', () => { it('renders without crashing', () => { const { container } = render(Hello) expect(container.firstChild).toBeInTheDocument() }) })