Initial commit

This commit is contained in:
Matheus Albino Brunhara
2022-03-27 19:10:25 -03:00
commit c1add15b38
26 changed files with 27672 additions and 0 deletions

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

@@ -0,0 +1,8 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders without crashing', () => {
const { baseElement } = render(<App />);
expect(baseElement).toBeDefined();
});