export const removePTag = (value: string) => {
    return value?.replace(/(<p[^>]+?>|<p>|<\/p>)/img, '')
}
