chore(site): update files to use a more standard naming (#9605)

This commit is contained in:
Bruno Quaresma 2023-09-08 15:14:41 -03:00 committed by GitHub
parent 554ddb11cd
commit 11404af9ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 4 deletions

View File

@ -46,5 +46,5 @@
<body>
<div id="root"></div>
<script type="module" src="./src/Main.tsx"></script>
<script type="module" src="./src/index.tsx"></script>
</body>

View File

@ -1,5 +1,5 @@
import { render, screen, waitFor } from "@testing-library/react";
import { App } from "app";
import { App } from "App";
import { Language } from "./NavbarView";
import { rest } from "msw";
import {

View File

@ -1,7 +1,7 @@
import { inspect } from "@xstate/inspect";
import { createRoot } from "react-dom/client";
import { Interpreter } from "xstate";
import { App } from "./app";
import { App } from "./App";
import "./i18n";
// if this is a development build and the developer wants to inspect

View File

@ -3,7 +3,7 @@ import {
screen,
waitForElementToBeRemoved,
} from "@testing-library/react";
import { AppProviders } from "app";
import { AppProviders } from "App";
import { DashboardLayout } from "components/Dashboard/DashboardLayout";
import { i18n } from "i18n";
import { TemplateSettingsLayout } from "pages/TemplateSettingsPage/TemplateSettingsLayout";