summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/reducers/languages.js
blob: 0ec2ae47f022eca8f169881b8cf8aaf074d01578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const Languages = require('../models/Languages');

module.exports = (state, action) => {
    state = Languages.create(state);

    switch (action.type) {

    default:
        return state;

    }
};