export function routeData(props: RouteDataArgs) {
return createServerData$(async (_, { request }) => {
// Snipped out the actual db call.
// Gets the dynamic url from the db and redirect
return redirect(dbResponse, 301);
});
}
export default function generateEmbedThumb() {
return null;
}
export function routeData(props: RouteDataArgs) {
return createServerData$(async (_, { request }) => {
// Snipped out the actual db call.
// Gets the dynamic url from the db and redirect
return redirect(dbResponse, 301);
});
}
export default function generateEmbedThumb() {
return null;
}