import styled from 'styled-components'; import colors from 'styles/colors'; import { Card } from 'components/Form/Card'; import Row from 'components/Form/Row'; const Note = styled.small` opacity: 0.5; display: block; margin-top: 0.5rem; a { color: ${colors.primary}; } `; const ArchivesCard = (props: { data: any, title: string, actionButtons: any }): JSX.Element => { const data = props.data; return ( { data.scanFrequency?.scansPerDay > 1 ? : } View historical versions of this page here, via the Internet Archive's Wayback Machine. ); } export default ArchivesCard;