removeddit/src/js/components/CommentSection.js

12 lines
176 B
JavaScript
Raw Normal View History

import React from 'react'
export default (props) => {
const { children } = props
return (
<div>
<h1>{props.root}</h1>
<h1>{children}</h1>
</div>
)
}