function ProductList({ products }: { products: string[] }) {
return products.map((p: string) =>
{p});
}
export default function App() {
const style: { [key: string]: string } = {
background: 'lightgray',
padding: '1em',
};
return (
);
}
console.log(App);