Initial commit from Create React App

This commit is contained in:
Indrajith K L
2019-12-11 15:18:13 +05:30
commit 53e5edb3d9
18 changed files with 11047 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();
});