import React from 'react'; import slide from 'App/svg/cheers.svg'; import { Icon, Button } from 'UI'; import Footer from './Footer' function Category({ name, healthOk }: { name: string; healthOk: boolean }) { const icon = healthOk ? ('check-circle-fill' as const) : ('exclamation-circle-fill' as const); return (
{name}
) } function HealthModal({ healthOk }: { healthOk: boolean }) { return (
Installation Status
); } export default HealthModal;