// export default function TitledPanel({ title, body }) {
// return (
//
// {title}
//
// {body}
//
// );
// }
// key 속성이 title/body인 요소를 가져온다.
export default function TitledPanel({ children }) {
const title = children.find(elem => elem.key === 'title');
const body = children.find(elem => elem.key === 'body')
return (
{title}
{body}
);
}