📅  最后修改于: 2022-03-11 15:04:30.584000             🧑  作者: Mango
//parent component which send the prop value
const parent=(val)=>{
return ;
}
//child component which recive the prop value
export const Children=(props)=>{
return props.value;
}