import React from 'react'; export interface ParagraphProps { text?: string; } export const Paragraph: React.FC = ({ text = 'Paragraph' }) => { return

{text}

; };