import * as React from 'react';
import { Routes, Route, useParams } from 'react-router-dom';
function ProfilePage() {
// Get the userId param from the URL.
let { userId } = useParams(); // 5
// ...
}
function runPage(){
return (<Text> {userId} </Text>)
}