Sha256: a854a6b9a7368c439b36221271f72737a043247ae8c05d497fbe56fdb4dd0bc6
Contents?: true
Size: 330 Bytes
Versions: 6
Compression:
Stored size: 330 Bytes
Contents
# frozen_string_literal: true class FirstComponent < ApplicationComponent def initialize @item = 'Hello, World!' end def another_div div do "Item value: #{@item}" end div class: 'another' do h2 'Another subheading from component' end h1 'Yet Another heading from component' end end
Version data entries
6 entries across 6 versions & 1 rubygems