initial commit

This commit is contained in:
Art Lowel
2016-11-30 15:13:29 +01:00
commit a573556963
50 changed files with 2161 additions and 0 deletions

7
src/backend/db.ts Normal file
View File

@@ -0,0 +1,7 @@
// Our API for demos only
export const fakeDataBase = {
get() {
let res = { data: 'This fake data came from the db on the server.' };
return Promise.resolve(res);
}
};