UNPKG

navigation-stack

Version:

Handles navigation in a web browser

10 lines (8 loc) 323 B
import InMemoryDataStorage from './data-storage/InMemoryDataStorage'; import InMemoryScrollPosition from './scroll-position/InMemoryScrollPosition'; export default class InMemoryEnvironment { constructor() { this.dataStorage = new InMemoryDataStorage(); this.scrollPosition = new InMemoryScrollPosition(); } }