import * as React from 'react'; import { carouselItems } from '../data/CarouselItems'; import { linkLists } from '../data/HomepageLinkLists'; export class Home extends React.Component { public render() { return
{ /* Carousel */ }
    { carouselItems.map((item, index) =>
  1. )}
{ carouselItems.map((item, index) =>
{

{ item.text } Learn More

)}
Previous Next
{ /* Lists of links */ }
{ linkLists.map((list, listIndex) =>

{ list.title }

    { list.entries.map((entry, entryIndex) =>
  • { entry }
  • )}
)}
; } }