Create react project

This commit is contained in:
IgorVolochay
2025-02-07 21:27:04 +00:00
parent e977bf2c98
commit 354e1f6251
17 changed files with 17600 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();
});