import classes from './AppGrid.module.css'; import { Link } from 'react-router-dom'; import { App } from '../../../interfaces/App'; import { AppCard } from '../AppCard/AppCard'; interface Props { apps: App[]; totalApps?: number; searching: boolean; } export const AppGrid = (props: Props): JSX.Element => { let apps: JSX.Element; if (props.apps.length > 0) { apps = (
{props.apps.map((app: App): JSX.Element => { return ; })}
); } else { if (props.totalApps) { if (props.searching) { apps = (

No apps match your search criteria

); } else { apps = (

There are no pinned applications. You can pin them from the{' '} /applications menu

); } } else { apps = (

You don't have any applications. You can add a new one from{' '} /applications menu

); } } return apps; };