Skip to content
This repository was archived by the owner on May 11, 2021. It is now read-only.
Greg edited this page Aug 7, 2018 · 3 revisions

State:

{
    id: Number,
    expenses: [{
        title: String,
        amount: Number,
        // reoccuring: String // will use pre-defined constants
        dateAdded: Date,
        category: String // will use pre-defined constants
    }],
    income: [{
        title: String,
        amount: Number,
        // reoccuring: String // will use pre-defined constants
        dateAdded: Date,
        source: String // will use pre-defined constants
    }],
    totalSum: Number
}

Clone this wiki locally