Skip to content

Commit

Permalink
chore: naming consistency across components
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinyl-Davyl committed Jun 13, 2024
1 parent 87af4fb commit 65c59e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import { useEffect, useState } from "react";
import { App as AntdApp, Layout, Row, Col, Collapse, theme } from "antd";

import Navbar from "./components/Navbar";
import Footer from "./components/Footer";

import AgreementData from "./AgreementData";
import AgreementHtml from "./AgreementHtml";
import Errors from "./Errors";
import TemplateMarkdown from "./TemplateMarkdown";
import TemplateModel from "./TemplateModel";
import useAppStore from "./store";
import SampleDropdown from "./SampleDropdown";
import CustomFooter from "./components/Footer";

const { Content } = Layout;
const App = () => {
Expand Down Expand Up @@ -95,7 +97,7 @@ const App = () => {
</div>
</div>
</Content>
<CustomFooter />
<Footer />
</Layout>
</Layout>
</AntdApp>
Expand Down

0 comments on commit 65c59e3

Please sign in to comment.