16 lines
254 B
Ruby
16 lines
254 B
Ruby
class ClassView
|
|
|
|
include React::Component
|
|
|
|
required_param :sources, type: [Hash]
|
|
|
|
def render
|
|
div class: "sourceList" do
|
|
sources.each do |source|
|
|
SourceView author: source[:author], text: source[:text]
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|