Basic react app

This commit is contained in:
Eric Ciarla
2024-07-23 21:48:11 -04:00
parent a0d89169ed
commit 565bc09439
19 changed files with 18856 additions and 0 deletions
@@ -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();
});