;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2015-2016 Andrey Antukh ;; Copyright (c) 2015-2016 Juan de la Cruz (ns uxbox.ui.settings (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] [cuerdas.core :as str] [uxbox.router :as r] [uxbox.rstore :as rs] [uxbox.ui.icons :as i] [uxbox.ui.mixins :as mx] [uxbox.util.dom :as dom] [uxbox.data.dashboard :as dd] [uxbox.ui.settings.profile :as profile] [uxbox.ui.settings.password :as password] [uxbox.ui.settings.notifications :as notifications] [uxbox.ui.dashboard.header :refer (header)])) (def profile-page profile/profile-page) (def password-page password/password-page) (def notifications-page notifications/notifications-page)