rails g view_component NomeDoComponente
with stimulus:
rails g view_component NomeDoComponente –stimulus
File: - component.html.erb html for the component - component.rb ruby code for internal component logic - preview.rb preview for lookbook - /spec/component_spec.rb spec for component with rspec
# frozen_string_literal: true class <%= class_name %>::Component < <%= parent_class %> <%- if initialize_signature -%> def initialize(<%= initialize_signature %>) <%= initialize_body %> end <%- end -%> end