class AppPatientProgrammeActivityComponent
Public Class Methods
Source
# File app/components/app_patient_programme_activity_component.rb, line 4 def initialize(patient, programme, team:) @patient = patient @programme = programme @team = team end
Public Instance Methods
Source
# File app/components/app_patient_programme_activity_component.rb, line 10 def call render AppCardComponent.new(section: true) do |card| card.with_heading { "Programme activity" } render AppActivityLogComponent.new(patient:, programme_type:, team:) end end