'use client' import React from 'react' import { Progress as ProgressAntd, Typography } from 'antd' import '@/app/css/Progress.scss' const { Text } = Typography interface IProps { value: number | undefined } const Progress = ({ value }: IProps) => { return (
{`${value || 15}%`}
) } export default Progress