Initialize project using Create React App

This commit is contained in:
Sudhanshu Gautam 2021-01-09 12:52:47 +05:30
parent 9c7f91a537
commit d5c4ea592a
17 changed files with 3006 additions and 2346 deletions

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

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