import React from 'react'; import { redirect } from '@yolkai/next-utils'; /** * A Next.js page which logs out the user by redirecting them to the root. */ export class LogoutPage extends React.Component { static async getInitialProps(ctx) { redirect('/', ctx); } render() { return

Logged out; redirecting back to the login page

; } } export default LogoutPage;