mirror of
https://github.com/zoriya/vike-react-native-web-bug.git
synced 2025-12-06 06:36:18 +00:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import type { PageContext } from "vike/types";
|
|
import type { Data } from "./+data.js";
|
|
|
|
export function title(pageContext: PageContext<Data>) {
|
|
const movies = pageContext.data;
|
|
return `${movies.length} Star Wars Movies`;
|
|
}
|