import React from "react"; type Props = { scrollHandler: React.MouseEventHandler; }; export default function ScrollToBottom({ scrollHandler }: Props) { return ( ); }