import React, { FC } from 'react' import { Link } from 'react-router-dom' import { useTheme } from '../hooks' import { App } from '../types' interface Props { app: App } const AppListItem: FC = ({ app }) => { const theme = useTheme() return (
{app.imageUrl &&
}
{app.name} {app.about &&

{app.about}

}
) } export default AppListItem