John Joyce 550cdc51ee
feat(React Incubation): React Playground Proof of Concept (#2059)
Co-authored-by: John Joyce <jjoyce0510@gmail.com>
2021-01-17 12:54:49 -08:00

8 lines
167 B
TypeScript

import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders the app', () => {
render(<App />);
});