Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Created October 18, 2022 02:41
Show Gist options
  • Save tararoutray/901dd7f2baac806841538a07923033b6 to your computer and use it in GitHub Desktop.
Save tararoutray/901dd7f2baac806841538a07923033b6 to your computer and use it in GitHub Desktop.
import React from "react";
import { Container } from "react-bootstrap";
const PortalFooter = () => {
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 PortalFooter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment