diff --git a/src/app/App.tsx b/src/app/App.tsx index fb23979e..e52af87e 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1593,23 +1593,60 @@ export function App({ store, initialStatusMessage }: AppProps) {
Entities
- {playerStartList.length === 0 ? ( - <> -
No Player Start authored yet.
-
- -
- - ) : ( + {entityDisplayList.length === 0 ?
No entities authored yet.
: null} + +
+ + +
+ +
+ + +
+ +
+ +
+ + {entityDisplayList.length === 0 ? null : (
- {playerStartList.map((playerStart, index) => ( + {entityDisplayList.map(({ entity, label }) => ( ))}