import styled from '@emotion/styled' import { Grid, Card, Box, Typography, Container } from '@mui/material'; import React from 'react' const InfoCard = (props) => { return ( {props.title} {props.picture} {props.text} ) } export default InfoCard