class AppPatientActivityComponent
Public Class Methods
Source
# File app/components/app_patient_activity_component.rb, line 4 def initialize(patient, team:) @patient = patient @team = team end
Public Instance Methods
Source
# File app/components/app_patient_activity_component.rb, line 9 def call render AppCardComponent.new(section: true) do |card| card.with_heading { "Activity log" } render AppActivityLogComponent.new(patient:, team:) end end