What is the meaning of
{...this.props}
I am trying to use it like that
Content Here
You will use props in your child component
for example
if your now component props is
{ booking: 4, isDisable: false }
you can use this props in your child compoenet
...
in you child component, you will receive all your parent props.