'use client' const list = [1, 2, 3] export default function Page() { return (
{list.map((item, index) => (

{item}

))}
) }