import Image from 'next/image' import { Progress } from '@janhq/joi' type Props = { total: number used: number } const UpdateApp = ({ used, total }: Props) => (
Updating App
{((used / total) * 100).toFixed(0)}%
) export default UpdateApp