class NotificationComponent < BaseComponent def initialize(notification: nil) @notification = notification super end erb_template <<~ERB
<%= @notification.message.html_safe %>
hace <%= distance_of_time_in_words @notification.created_at, Time.zone.now %>
Marcar como no leĆ­do
ERB end