export const newLineToParagraph = (text) => {
return text
.split(/\n+/)
.map(p => `<p>${p}</p>`)
.join('');
};