Initial commit from Create React App

This commit is contained in:
Rodrigo Pinto 2019-12-11 20:56:51 -05:00
commit 4d61e7fadf
18 changed files with 14380 additions and 0 deletions

9
src/App.test.js Normal file
View file

@ -0,0 +1,9 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});