9 lines
156 B
React
9 lines
156 B
React
import React from 'react'
|
|
import Comments from '../component/comments/Comments'
|
|
|
|
export default function CommentsPage() {
|
|
return (
|
|
<Comments />
|
|
)
|
|
}
|