import React from "react"; const LinkRow: React.FC<{ children: React.ReactNode }> = ({ children }) => { return (
{React.Children.map(children, (child, index) => ( <> {index > 0 &&
}
{child}
))}
); }; export default LinkRow;