Add CRA webview-ui

This commit is contained in:
Saoud Rizwan
2024-07-06 01:35:59 -04:00
parent fd750864db
commit 4bfc2a5bc4
20 changed files with 19885 additions and 0 deletions

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