// @flow import React from 'react'; import { AppsContainer, SectionHeading } from './style'; import type { ChecklistResource } from '../../types'; import { AppRow } from './App'; type Props = { resource: ChecklistResource, }; export const Apps = ({ resource }: Props) => { if (!resource.apps) return null; return ( Apps {resource.apps.map(app => ( ))} ); };