14 lines
229 B
React
14 lines
229 B
React
|
|
function ParagraphPage() {
|
|
return (
|
|
<>
|
|
<div className="content-panel">
|
|
<h2>Paragraph Questions</h2>
|
|
<p>Paragraph content will appear here.</p>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default ParagraphPage
|