UNPKG

catberry

Version:

Catberry is an isomorphic framework for building universal front-end apps using components, Flux architecture and progressive rendering.

12 lines (8 loc) 189 B
'use strict'; const testUtils = require('../../utils'); class AsyncDataStore { load() { return testUtils.wait(1).then(() => this.$context.name); } } module.exports = AsyncDataStore;