16fb2bb919
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
10 lines
273 B
JavaScript
10 lines
273 B
JavaScript
import makeConnectedElement from './makeConnectedElement';
|
|
|
|
/**
|
|
* Create a scrollable element that's connected to the DOM.
|
|
*/
|
|
export default function makeConnectedScrollElement() {
|
|
const elem = makeConnectedElement();
|
|
elem.style.overflow = 'scroll';
|
|
return elem;
|
|
}
|