import React from 'react'; import { Box, Heading, Image } from 'grommet'; export const Other = ({ image, name }: { image: string; name: string }) => { return ( {name} ); };