File size: 106 Bytes
8e222fd
 
 
1
2
3
4
export const scrollToBottom = (element: HTMLElement) => {
  element.scrollTo(0, element.scrollHeight);
};