Graphical PDS migrator for AT Protocol
1import { PageProps } from "fresh"; 2import OAuthCallback from "../../islands/OAuthCallback.tsx"; 3 4export default function Callback(props: PageProps) { 5 const error = props.url.searchParams.get("error"); 6 7 return ( 8 <div class="min-h-screen bg-gray-50 dark:bg-gray-900"> 9 <OAuthCallback error={error || undefined} /> 10 </div> 11 ); 12}