Initialize project using Create React App

This commit is contained in:
2020-03-30 11:44:45 +05:30
commit 1a92d5120f
22 changed files with 11445 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import React from 'react';
import { render } from '@testing-library/react';
import { Provider } from 'react-redux';
import store from './app/store';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(
<Provider store={store}>
<App />
</Provider>
);
expect(getByText(/learn/i)).toBeInTheDocument();
});