ditching TachiWeb-React and starting anew

This commit is contained in:
Aria Moradi
2020-12-24 02:37:23 +03:30
parent 94f6a53be7
commit c71cf587c4
19 changed files with 11694 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
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();
});