Material UI docs give an example for [elevating an AppBar using a scroll trigger](https://material-ui.com/components/app-bar/#elevate-app-bar) and this would be useful behavior to indicate when a user has scrolled past content. This can be achieved by creating a ref to the column content and passing that to a scroll trigger as the target. The scroll trigger can then be used to conditionally apply elevation. _Example:_ ```jsx // File w/ Column import { useRef } from "react"; ... const colRef = useRef(); ... return( // Column <Box ref={colRef}> { /* pass the ref to the appropriate child */ } ... ); ``` ```jsx // File w/ AppBar ... const colIsScrolled = useScrollTrigger({ "target": colRef, "threshold": 0 }); ... return( <> <AppBar position="sticky" elevation={colIsScrolled ? 3 : 0}> ... ); ... ``` At the moment, the ref being passed is becoming null. I'm not sure how to fix this and will fix an elevation level until a better solution can be found.