Commit 7fd1cc7d by asranov0003

refactor: remove footer

parent 1e49e9ab
import React from "react";
import "./Footer.css";
const Footer: React.FC = () => {
return <div>Footer</div>;
};
export default Footer;
export { default } from "./Footer";
import React from "react";
import Header from "../layouts/Header";
import { Outlet } from "react-router-dom";
import Footer from "../layouts/Footer";
const Layout: React.FC = () => {
return (
<>
<Header />
<Outlet />
<Footer />
</>
);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment