fix unsafe roles being usable, begin work on role/server editor

This commit is contained in:
Katalina / stardust 2017-12-24 03:22:41 -06:00
parent d1f556b0f0
commit bd15a812e5
20 changed files with 343 additions and 92 deletions

13
UI/src/actions/ui.js Normal file
View file

@ -0,0 +1,13 @@
export const fadeOut = cb => dispatch => {
dispatch({
type: Symbol.for('app fade'),
data: true
})
setTimeout(cb, 300)
}
export const fadeIn = {
type: Symbol.for('app fade'),
data: false
}