1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-03-02 06:40:49 +00:00

Add basic overview page (#1668)

* Add basic overview page

* Add empty state

* Show hub devices

* Add more info to config entries page

* Lint
This commit is contained in:
Paulus Schoutsen
2018-09-17 14:11:07 +02:00
committed by GitHub
parent 650d2d7a47
commit c593e2789c
10 changed files with 428 additions and 181 deletions

View File

@@ -0,0 +1,10 @@
export default (a, b) => {
if (a < b) {
return -1;
}
if (a > b) {
return 1;
}
return 0;
};