Create React app.

This commit is contained in:
Yang Luo
2020-10-20 21:46:44 +08:00
parent 112371876d
commit dedca64568
16 changed files with 11325 additions and 0 deletions

9
web/src/App.test.js 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();
});