11 lines
181 B
Ruby
11 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Widgets
|
|
class Container < React::Component
|
|
private
|
|
|
|
def focus
|
|
raise NotImplementedError, "#{self.class}#focus"
|
|
end
|
|
end
|
|
end
|