forked from AOT-Technologies/forms-flow-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FWF-3460:[Feature]- Form listing page and Create flow modals.
- Loading branch information
1 parent
cdbabaf
commit 20536a6
Showing
10 changed files
with
806 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
import React from "react"; | ||
import { version } from "../../../package.json"; | ||
import { Translation } from "react-i18next"; | ||
// import { version } from "../../../package.json"; | ||
// import { Translation } from "react-i18next"; | ||
|
||
const version_org = version; | ||
// const version_org = version; | ||
const Footer = React.memo(() => { | ||
return ( | ||
<div className="ps-md-3 pb-3"> | ||
<hr /> | ||
<div className="d-flex justify-content-end pb-2"> | ||
<div className="fw-bold"> | ||
<Translation>{(t) => t("Powered by ")}</Translation>{" "} | ||
<a className="text-link" href="https://formsflow.ai/"> | ||
formsflow.ai | ||
</a> | ||
{` v${version_org}`} | ||
</div> | ||
</div> | ||
</div> | ||
<div></div> | ||
// <div className="ps-md-3 pb-3"> | ||
// <hr /> | ||
// <div className="d-flex justify-content-end pb-2"> | ||
// <div className="fw-bold"> | ||
// <Translation>{(t) => t("Powered by ")}</Translation>{" "} | ||
// <a className="text-link" href="https://formsflow.ai/"> | ||
// formsflow.ai | ||
// </a> | ||
// {` v${version_org}`} | ||
// </div> | ||
// </div> | ||
// </div> | ||
); | ||
}); | ||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.