import React from 'react'; import { getDecadeStart } from '@wojtekmaj/date-utils'; import TileGroup from '../TileGroup'; import Decade from './Decade'; import { getBeginOfCenturyYear } from '../shared/dates'; import { tileGroupProps } from '../shared/propTypes'; export default function Decades(props) { const { activeStartDate } = props; const start = getBeginOfCenturyYear(activeStartDate); const end = start + 99; return ( ); } Decades.propTypes = { ...tileGroupProps, };