diff --git a/website/src/components/ExpoSnackLandingPage.js b/website/src/components/ExpoSnackLandingPage.js index 3ae83e346..b6fdc5a39 100644 --- a/website/src/components/ExpoSnackLandingPage.js +++ b/website/src/components/ExpoSnackLandingPage.js @@ -17,6 +17,10 @@ import RedirectStarterSnack from './RedirectStarterSnack'; export default function ExpoSnackLandingPage({match}) { const {expoSnackPath} = match.params; + const title = React.useMemo( + () => `${expoSnackPath} | PlayTorch Snack`, + [expoSnackPath], + ); if (expoSnackPath == null || expoSnackPath.length === 0) { return ; @@ -24,7 +28,17 @@ export default function ExpoSnackLandingPage({match}) { return (
- + + + + + +