How to do it
Now you could use something like react-sticky to do something like this, but it’s so much easier to just define your sidebar using css.
#sidebar {
position: -webkit-sticky;
position: sticky;
top: 0;
}
You can change the top position to be any amount that would include your fixed header if you wanted to.