class NotificationComponent < BaseComponent def initialize(notification: nil) @notification = notification super end erb_template <<~ERB
<%= @notification.message %>
hace <%= distance_of_time_in_words @notification.created_at, Time.zone.now %>
ERB end