import React from "react"; interface Props { children: Array; } const Examples = ({ children }: Props) => (
{React.Children.map(children, (child) => (
{child}
))}
); export default Examples;