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