weather displays complete

This commit is contained in:
Matt Walsh 2022-11-22 16:19:10 -06:00
commit cc61d2c6d1
34 changed files with 8106 additions and 9251 deletions

View file

@ -0,0 +1,10 @@
const STATUS = {
loading: Symbol('loading'),
loaded: Symbol('loaded'),
failed: Symbol('failed'),
noData: Symbol('noData'),
disabled: Symbol('disabled'),
};
export default STATUS;
window.STATUS = STATUS;