This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / app / (embeds) / page-parts-embed / url / page.tsx
492 B 19 lines
1import UrlEmbedContainer from '@/features/url/containers/urlEmbedContainer/UrlEmbedContainer'; 2import { redirect } from 'next/navigation'; 3 4interface Props { 5 searchParams: Promise<{ id: string | undefined }>; 6} 7 8export default async function Page(props: Props) { 9 const searchParams = await props.searchParams; 10 const url = searchParams.id 11 ? decodeURIComponent(searchParams.id) 12 : searchParams.id; 13 14 if (!url) { 15 redirect('/'); 16 } 17 18 return <UrlEmbedContainer url={url} />; 19}