Footer.js 330 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
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