### Color ```jsx <> ``` ### Size ```js ``` ### Demo of `useScrollOnMount` ```jsx import { useScrollOnMount } from '../hooks/use-scroll-on-mount'; import { Button } from './button'; const ImportantContent = () => { const scrollTargetRef = useScrollOnMount(); return (

This is a random list

); }; const ScrollDemo = () => { const [show, setShow] = React.useState(false); return (
{show && }
); }; ; ```