import { useParams } from "@remix-run/react"; export default function Story() { const { tabNumber } = useParams(); return (

{tabNumber}

); }