add more quickstart

This commit is contained in:
2023-02-17 17:29:23 +01:00
parent d894def70c
commit 59e2572173
59 changed files with 60141 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();
});