11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
import Parent from './Parent';
|
|
import Child from './Child';
|
|
|
|
function MyComponent({closeFn}) {
|
|
return (
|
|
<Parent render={() => <Child closeFn={closeFn} /> } />
|
|
);
|
|
}
|
|
|
|
export default Parent;
|