Rename all JSX files to have proper file extension

Change-Id: I4ab382f7673a815164f74154e6b03b370fd76a33
This commit is contained in:
Manuel Stahl
2024-02-05 17:31:44 +01:00
parent ac843b3244
commit 2afc7aeca4
17 changed files with 0 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from "react";
import { render } from "@testing-library/react";
import { AdminContext } from "react-admin";
import LoginPage from "./LoginPage";
describe("LoginForm", () => {
it("renders", () => {
render(
<AdminContext>
<LoginPage />
</AdminContext>
);
});
});