Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
643 Bytes
import React from 'react';
import jumboData from '../fixtures/jumbo.json';
import { Jumbotron } from '../components';
export function JumbotronContainer() {
return (
<Jumbotron.Container>
{jumboData.map((item) => (
<Jumbotron key={item.id} direction={item.direction}>
<Jumbotron.Pane>
<Jumbotron.Title>{item.title}</Jumbotron.Title>
<Jumbotron.SubTitle>{item.subTitle}</Jumbotron.SubTitle>
</Jumbotron.Pane>
<Jumbotron.Pane>
<Jumbotron.Image src={item.image} alt={item.alt}/>
</Jumbotron.Pane>
</Jumbotron>
))}
</Jumbotron.Container>
);
}