export const Number = ({ value = 0 }) => { const result = String(value).padStart(2, '0') return (

88

{result}

) }