Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Created October 18, 2022 02:29
Show Gist options
  • Save tararoutray/eed807d27603ec609b2ff3f22c2bc382 to your computer and use it in GitHub Desktop.
Save tararoutray/eed807d27603ec609b2ff3f22c2bc382 to your computer and use it in GitHub Desktop.
import React from "react";
import { Container } from "react-bootstrap";
const AuthFooter = () => {
return (
<React.Fragment>
<footer className="bg-light border-top py-3 fixed-bottom">
<Container>
&copy; React Auth Demo - 2022
</Container>
</footer>
</React.Fragment>
);
}
export default AuthFooter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment