/**
* Child Concepts
* This component renders a list of child concepts for a given concept.
* - provides the
wrapper for each level of nesting
*/
import {ChildConceptTerm} from '../types'
import {StyledChildConcepts} from '../styles'
import {Children} from './Children'
export const ChildConcepts = ({concepts}: {concepts: ChildConceptTerm[]}) => {
return (
{concepts.map((concept: any) => (
))}
)
}