add client (React app)

This commit is contained in:
João Geonizeli
2022-07-08 16:00:30 -03:00
parent bbc327480e
commit 1cfa4ce55e
20 changed files with 9326 additions and 0 deletions

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