export default function Test(props: { [key: string]: object }) { return (

Welcome to the new page!

This is a new page created to demonstrate the use of TypeScript and React.

{JSON.stringify(props, null, 2)}
{props.data.map((item: { id: string; name: string; }) => ( ))}
Name Title Status
{item.name} {item.title}
); }