I am trying to apply margins and paddings with React-Bootstrap as props.
I passed the docs through but haven\'t found any mention adding padding or margin in there as it
You can add margin and padding by using default React's style:
const divStyle = { marginLeft: '10px', }; function HelloWorldComponent() { return Hello World!; }
Refrenced from here