Management: init payments

This commit is contained in:
Viktor Fomin 2023-07-29 14:59:42 +03:00
parent 92fb3499bb
commit 1fe8b76037
2 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,7 @@ beforeBuild(
path.join(__dirname, "../src/autoGeneratedTranslations.ts"), path.join(__dirname, "../src/autoGeneratedTranslations.ts"),
{ {
path: path.join(__dirname, "../../client/public/locales"), path: path.join(__dirname, "../../client/public/locales"),
files: ["Settings.json"], files: ["Settings.json", "Payments.json", "PaymentsEnterprise.json"],
alias: "CLIENT_PUBLIC_DIR", alias: "CLIENT_PUBLIC_DIR",
} }
); );

View File

@ -1,7 +1,8 @@
import React from "react"; import React from "react";
import PaymentsPage from "client/PaymentsPage";
const Payments = () => { const Payments = () => {
return <h1>Payments</h1>; return <PaymentsPage />;
}; };
export default Payments; export default Payments;