MCPcopy Create free account
hub / github.com/QuarkGluonPlasma/react-course-code / Aaa

Function Aaa

children-test/src/App.tsx:7–17  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

5}
6
7const Aaa: FC<AaaProps> = (props) => {
8 const { children } = props;
9
10 return <div className='container'>
11 {
12 React.Children.map(children, (item) => {
13 return <div className='item'>{item}</div>
14 })
15 }
16 </div>
17}
18
19function App() {
20 return <Aaa>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected