mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 12:15:40 +08:00
16 lines
291 B
JavaScript
16 lines
291 B
JavaScript
import React from 'react';
|
|
import styles from './CommentHistory.css';
|
|
|
|
export default ({comments = []}) => (
|
|
<div className={styles.header}>
|
|
<h1>Comments</h1>
|
|
<ul>
|
|
{comments.map(() => (
|
|
<li>
|
|
{/* Comment Data*/}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
);
|