import * as React from "react"; import { Component } from "react"; export interface CarouselItemProps { name: string; position: string; email: string; photo: string; } export default class CarouselItem extends Component { constructor(props: CarouselItemProps) { super(props); this.state = {}; } public render() { return (
{this.props.name}
{this.props.position}
{this.props.email}
); } }