Extracted Views

Move views to `./app/views/*` folder to organize or share with other controllers.

Controller
class PostsController < ApplicationController
  def index
    @posts = Post.all
    render component(Posts::Index)
  end
end
View
class Posts::Index < ApplicationView
  attr_writer :posts

  def view_template
    h1 { "Posts" }
    ul {
      @posts.each do |post|
        li { post.title }
      end
    }
  end
end
22 / 39