Card to show the state of an entity?

Is there a card or method where I can show the state of an entity on Lovelace?

For example, how can I show:
{{ state_attr('device_tracker.govee_h5074_0e8e','source') }}

The entities card supports attributes.

https://www.home-assistant.io/dashboards/entities/#special-row-elements

type: entities
title: Entities card sample
entities:
  - type: attribute
    entity: sun.sun
    attribute: elevation
    name: Sun elevation

So does the Entity card.

Thanks- someday I’ll think of looking in the docs first.