mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-16 02:27:40 +02:00
core/authenticate: refactor idp sign out (#4582) Co-authored-by: Caleb Doxsey <cdoxsey@pomerium.com>
16 lines
433 B
TypeScript
16 lines
433 B
TypeScript
import { Alert } from "@mui/material";
|
|
import Container from "@mui/material/Container";
|
|
import React, { FC } from "react";
|
|
import { SignedOutPageData } from "src/types";
|
|
|
|
type SignedOutPageProps = {
|
|
data: SignedOutPageData;
|
|
};
|
|
const SignedOutPage: FC<SignedOutPageProps> = ({ data }) => {
|
|
return (
|
|
<Container>
|
|
<Alert color="info">User has been logged out.</Alert>
|
|
</Container>
|
|
);
|
|
};
|
|
export default SignedOutPage;
|