mirror of
https://github.com/penpot/penpot.git
synced 2026-05-31 04:38:08 +00:00
26 lines
1.0 KiB
Clojure
26 lines
1.0 KiB
Clojure
;; 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 <niwi@niwi.nz>
|
|
;; Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
|
|
|
|
(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)
|