# frozen_string_literal: true module Yattho # Use `Content` as a helper to render content passed to a slot without adding any tags. class Content < Yattho::Component status :stable def call content end end end