Run prettier across the react source.

This commit is contained in:
Dan Albert
2022-03-03 23:34:18 -08:00
parent 13ca5352c7
commit a710ce5e1b
30 changed files with 85 additions and 104 deletions

View File

@@ -1,8 +1,8 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
import App from "./App";
import { render, screen } from "@testing-library/react";
import React from "react";
test('renders learn react link', () => {
test("renders learn react link", () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();