summaryrefslogtreecommitdiff
path: root/packages/integrations/react/test/fixtures/react-component/src/components/WithChildren.jsx
blob: a522bf95e9f1de9a376163dd21346cb74572b487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import React from 'react';

export default function ({ id, children }) {
	return (
		<div id={id}>
			<div className="with-children">{children}</div>
			<div className="with-children-count">{children.length}</div>
		</div>
	);
}