import Link from 'next/link' import styles from './styles.module.css' export default async function Page({ params, }: { params: Promise<{ num: string }> }) { const { num } = await params return (
{new Array(100).fill(0).map((_, i) => (
lower
{num}
higher
))}
) }