class Renderful::Component::Base

Attributes

client[R]
entry[R]

Public Class Methods

new(entry:, client:) click to toggle source
# File lib/renderful/component/base.rb, line 8
def initialize(entry:, client:)
  @entry = entry
  @client = client
end

Public Instance Methods

render() click to toggle source
# File lib/renderful/component/base.rb, line 13
def render
  fail NotImplementedError
end