import { Card } from 'web-check-live/components/Form/Card'; import Row, { type RowProps } from 'web-check-live/components/Form/Row'; const cardStyles = ` grid-row: span 2; .content { max-height: 50rem; overflow-y: auto; } `; const RobotsTxtCard = ( props: { data: { robots: RowProps[]}, title: string, actionButtons: any}): JSX.Element => { const robots = props.data; return (
{ robots.robots.length === 0 &&

No crawl rules found.

} { robots.robots.map((row: RowProps, index: number) => { return ( ) }) }
); } export default RobotsTxtCard;