create react app

This commit is contained in:
nora 2022-03-06 13:35:16 +01:00
parent c89a204a54
commit ebc9756d1e
20 changed files with 9110 additions and 0 deletions

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();
});