Front end of the Slack clone application.

constant.js 96B

12345678
  1. "use strict";
  2. module.exports = function (value) {
  3. return function () {
  4. return value;
  5. };
  6. };