add buttons

master
Kanezoh 2021-06-18 20:20:10 +09:00
parent f971ffd5ee
commit 36f9f738bf
3 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
class MechanizeCr::FormContent::Button < MechanizeCr::FormContent::Field
end
require "./reset_button"
require "./submit_button"

View File

@ -0,0 +1,2 @@
class MechanizeCr::FormContent::ResetButton < MechanizeCr::FormContent::Button
end

View File

@ -0,0 +1,2 @@
class MechanizeCr::FormContent::SubmitButton < MechanizeCr::FormContent::Button
end