import EditBtn from "./Buttons/EditBtn.js"; const Footer = ({ pathname }) => { return ( <div className="position-absolute bottom-0 start-0 justify-content-end d-flex justify-content-end w-100 bg-white" style={{ zIndex: "50" }}> <EditBtn pathname={pathname} /> </div> ) } export default Footer