import React from 'react'; interface PresentationProps { name: string; status: string; description: any; image: string; } /** * @return {jsx} The root component */ export default function Presentation( {name, status, description, image}: PresentationProps) { const imageDivStyle = { width: '33%', }; const imageStyle = { width: '250px', height: '250px', }; const style = { width: '67%', }; return (

{name}

{status}

{description}

); }