ECS ships with the GameObjectEntity component. It is a MonoBehaviour. In OnEnable, the GameObjectEntity component creates an Entity with all components on the GameObject. As a result the full GameObject and all its components are now iterable by ComponentSystem classes.
Note: for the time being, you must add a
GameObjectEntitycomponent on eachGameObjectthat you want to be visible / iterable from theComponentSystem.