- Updated to React 18

- Updated for public release
  - Git was reset for privacy reasons
This commit is contained in:
2022-06-27 16:41:03 +02:00
commit 3cb1759648
68 changed files with 35317 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { render, screen } from "@testing-library/react";
import { AboutContainer } from "./About";
describe("About container", () => {
it("renders welcome to the about page", () => {
render(<AboutContainer />);
expect(screen.getByText(/Welcome to the about page/i)).toBeInTheDocument();
});
});

View File

@@ -0,0 +1,7 @@
import { FunctionComponent } from "react";
type Props = {};
export const AboutContainer: FunctionComponent<Props> = () => {
return <h1>Welcome to the about page :)</h1>;
};