sample_rails_tailwind/app/controllers/static_pages_controller.rb

14 lines
131 B
Ruby
Raw Normal View History

2024-12-29 17:22:48 +08:00
class StaticPagesController < ApplicationController
def home
end
def help
end
def about
end
2024-12-30 00:09:54 +08:00
def contact
end
2024-12-29 17:22:48 +08:00
end