Initialize project using Create React App

This commit is contained in:
Yusuf Ipek
2021-05-12 22:35:59 +03:00
commit 1d62ee9992
18 changed files with 38559 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
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();
});