class Admin::ComponentsController < Admin::ApplicationController
  before_action :set_active_menu

  def index
  end

  def show
    @component = params[:name]
    @title = "#{@component} componment"
  end

  def set_active_menu
    @active_menu = "components_manage"
  end
end
