({ children, className })
| 1 | import T from 'prop-types'; |
| 2 | |
| 3 | function Section({ children, className }) { |
| 4 | return <div className={`${className}`}>{children}</div>; |
| 5 | } |
| 6 | |
| 7 | Section.propTypes = { |
| 8 | children: T.node.isRequired, |
nothing calls this directly
no outgoing calls
no test coverage detected