initial commit

This commit is contained in:
Viktor Rådberg
2023-07-01 23:21:24 +02:00
parent 013eed4344
commit cfd242fcaf
20 changed files with 9769 additions and 0 deletions

9
my-app/src/App.test.tsx Normal file
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();
});