Initial commit

This commit is contained in:
2020-05-28 09:59:52 +02:00
commit 89eee85b09
24 changed files with 11555 additions and 0 deletions

9
src/App.test.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});