8 lines
134 B
Ruby
8 lines
134 B
Ruby
class Layout::NotificationItemComponent < ApplicationComponent
|
|
attr_reader :user
|
|
|
|
def initialize(user)
|
|
@user = user
|
|
end
|
|
end
|